-
-
Notifications
You must be signed in to change notification settings - Fork 665
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Displaying large messages in topics is stalling the UI #564
Comments
What size is your "with many large messages" ? |
Thank you for the prompt response. Our bulk messages range from 2MB to 60MB, and there could be hundreds of these messages generated per day and published to the topic. |
ok so I your case, the need will be server side ! |
Yes. We don't know how else to manage this performance issue with our current payloads. I appreciate your help! |
Hello @tchiotludo, I would like to work on a solution to this, can u assign it to me? |
How will you handle this ? |
Well, I think the backend is required to catch large messages and only send a small preview. I see the limit is almost 10MB but if we send 10MB messages the problem could just persist, so maybe I think 5MB could be ok. What do you think? |
It's a good solution, please add a configuration options with a decent default value (5MB) |
Hello @tchiotludo, I still working on a solution to this issue. I'm catching the size of messages in the backend and the problem stills if there are many messages of length near to the limit (4.9MB for example. Thinking in change limit to 2.5 oe 3 MB) and I think cutting the message does not give a good UX because JSON format fails and maybe is not worth seeing only a cut part of a message. I'm thinking about only showing a message informing this situation and making more visible the "share" option to see the full message. Something like this: What do you think? |
I still think the truncate is the better option than nothing, debugging without any message is impossible, I prefer a snippet |
also add a single messages downloading close #564
Hello @tchiotludo. Thank you for your tremendous effort with this project. We are just starting to use the application in our Kafka development and it has been a big help.
An issue that we are encountering is that the app would hang when we view a topic with many large messages. Would it be possible to disable the message preview window, and provide a button for individual messages to view an abbreviated string of the message (ie. 250 characters) and with a download button to download the full message?
Thank you so much for your time.
Regards,
Rick
The text was updated successfully, but these errors were encountered: