-
-
Notifications
You must be signed in to change notification settings - Fork 661
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
Searching messages is currently ridiculously slow #1834
Comments
If the max.poll.records are increased there is also a problem with the oldest listing as it returns a list, which is way too large: |
I tried your 2 fixes (config update + limit on oldest consume) but for me there is still the default 50 records limit applied consumer max.poll.records because of this line:
size will always be 50 if you keep the default value. But increasing it will increase the number of records that will be displayed
Don't you have the same behaviour ? |
I tried to remove the property from the consumer in the search function but the 50 records limit to be displayed in the UI is not applied anymore I was showing hundreds of matching records. We probably have to apply it later, probably here akhq/src/main/java/org/akhq/repositories/RecordRepository.java Lines 728 to 731 in b566b8c
|
Hi @AlexisSouquiere, thanks a lot for the detailed checks 🙂 I've worked on that and came to this solution: #1843 Feel free to doublecheck it as well 😉 Best Regards |
When searching in a topic containing much data, the search will never finish due to a combination of a poll-timeout of 1 second combined with max.poll.records of 50.
The text was updated successfully, but these errors were encountered: