-
Notifications
You must be signed in to change notification settings - Fork 415
Closed
Labels
performancePerformance is one of the concernsPerformance is one of the concerns
Description
When listing messages Kafka Owl has to do a couple of requests sequentially. It fetches the partitionIDs for the requested topics, the low & high watermarks, starts a partition consumer for each partition etc. I have seen response times which take up to 4.3s for a topic with 50 partitions (regardless of the message size).
Therefore we should make sure that as many requests as possible will be run concurrently (or can be periodically prefetched so that we can potentially save a request upon invocation).
- Fetch watermarks concurrently
- Check what requests could be periodically prefetched so that they do not need to be fetched upon invocation (this is now tracked under Implement Cache layer #20)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
performancePerformance is one of the concernsPerformance is one of the concerns