-
Notifications
You must be signed in to change notification settings - Fork 55
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
sessionList is very slow v7.5 on a cluster #4693
Comments
The UI node makes a call out to all nodes to ask them for their session list. If there is a delay in contacting one node it will delay the results for all. It could potentially be changed so that the UI node builds up the cluster session list asynchronously and in the background so that subsequent requests to the servlet read from this if not out of date. The first call to sessionList would need to wait a reasonable time to try to get all nodes' data. |
Issue seems to be that sessions are not expiring so sessionDestroyed event is not fired and thus the in-mem map of sessions is building up. Possibly caused by an uplift to the Jetty version (9->11) when dropwiz was uplifted. |
PR for #4693 - sessionList is very slow v7.5 on a cluster
No description provided.
The text was updated successfully, but these errors were encountered: