-
Notifications
You must be signed in to change notification settings - Fork 11.7k
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
[ISSUE #8912] Rebalancing logic shift in POP consumption mode #8923
base: develop
Are you sure you want to change the base?
Conversation
Why not reduce the computational load on the server side by adding a cache to the broker, instead of adopting a client-side computation approach? |
Do you mean the results of the distribution cached on the broker side? When POP consumption mode is enabled, I think there are also a large number of network requests, and each topic subscribed by the corresponding client is a network request, which does not seem to solve the problem completely. Transferring to the client side can unify the rebalancing logic. Because it doesn't seem easy to completely isolate POP and PULL rebalancing logic in the original version, and the initial client execution is ideally local rebalancing |
|
Which Issue(s) This PR Fixes
Fixes #8912
Brief Description
https://shimo.im/docs/Ee32mZB85xcK87A2
How Did You Test This Change?