-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Server-side pagination to make ArgoCD UI a rocket #14947
Comments
Thanks for logging this one, I have subscribed to the post and will follow along. I am not at that scale yet, but researching how well ArgoCD handles these kinds of numbers for when that time comes. Beyond the slow UI loading have you found it handles 2000+ without too many issues? What sort of system resources does your instance use? |
Server-side pagination was implemented by Akuity (see their blog post https://akuity.io/blog/akuity-july-2023-update/). When we asked on Slack, we were told that the team at Akuity was planning on upstreaming it in around a month (see discussion here. |
That's great news, really! |
@alexymantha Looking forward to the upstreaming 🎉 |
@alexmt's original estimate would put this in time for 2.9, so setting it for that milestone for now. :-) |
I really hope to see it backported for 2.7 release |
@Whisper40 I haven't seen the code, but my guess is that it was fairly involved. I kind of doubt we'll be able to backport, but will certainly consider it. In good news, 2.8 seems to be pretty solid, and I expect 2.9 to be a relatively light release. So hopefully the upgrade path will be painless. |
@crenshaw-dev @alexymantha Hi, it seems that the 2.9 release has been published but i don't see any mention about pagination. Is it normal ? (Oh it seems it's for 2.10 :( ) |
@Whisper40 I don't think this has been announced to be included in any particular release yet. |
It looks like it is going to be released in |
The Akuity folks have told me they plan to get this into 2.10, so I've added the ticket to that column in the project. It's not a promise, just an indication of the current plan. :-) |
Any progress on this from Akuity? |
I'd say, if they won't merge their patch soon it can be someone else with a completely different implementation and then Akuity would have a hard time to maintain their fork. |
@dyatlov are you signing up for the task? |
Sorry, for the delay with the PR. We ran into several issues along the way and had to take a step back to ensure good quality. As a short summary:
Since the implementation is more involved than expected, I’ve started with a proposal that documents required changes: #17222 |
Hello ArgoCD Team, @alexmt . What's the latest on when we think this feature will be released? Thanks. |
Hi ArgoCD TEAM, @alexmt is there an update about this? |
Any idea when this is going to be implemented? |
I found out that during the list application phase, we're getting back a bunch of data we don't really need, like updates 2024.07.02: update 2024.12.25:
|
Hi guys, any update on this? would really help us a out. |
This is much awaited feature we are waiting for. |
@ezxfv to prioritize that change, I think we'd need reason to believe that payload is a significant performance bottleneck. For now, it seems like CPU is the more significant bottleneck. |
@crenshaw-dev yeah TTFB (Time to first byte) should be a metric of interest. |
@crenshaw-dev Indeed, this method of reducing irrelevant information can only temporarily alleviate my current predicament, allowing the Argo CD homepage to barely load all applications (8000+). Upon a cursory examination of the performance on Chrome, the primary time consumers are script execution (9s) and rendering (5s). Would leveraging Web Workers and WASM contribute to accelerating this process? It appears that pagination remains the least affected solution by the growth in the number of applications. |
@ezxfv I imagine there are a lot of things that could be tuned on the frontend to speed things up. But even if you manage to half the script execution/rendering time, you're probably not going to get as much a win as you would be cutting the number of processed applications by 90%. There are a lot of ways we could improve performance. Pagination seems like the highest payoff for the least effort / maintenance burden. |
Any news on this? |
The proposal Alex wrote is now merged: #17222 Implementation is pending. |
Any update on this ? |
I made the following two small changes: by delaying the rendering of non-essential components, the entire page now loads much faster, and memory usage has been significantly reduced. I have 9500 applications, and now the homepage opens in just 1-2 seconds, with memory usage significantly reduced. Search, filtering, and other functions have become incredibly smooth. Previously, it took over 20 seconds, and the page could even crash. In addition to this, there were some other minor changes, but these are the main improvements. |
@ezxfv where PR |
@tooptoop4 @alexmt @crenshaw-dev #21334 ![]() |
@LeoAnt02 Maybe you can build a new image with my pr, it supports 10w+ applications |
@ezxfv Hi! In the company I work for we have an ArgoCD environment of over 3200 apps, and your solution sounds great to resolve the UI slowness. We are now considering to split ArgoCD to multiple instances in order to solve the slowness issue. Will this solution be released in a new version? |
I just wanted to contribute some things I have experienced at multiple customers regarding UI slowness of ArgoCD. There are two different scenarios where customers experience slowness in the UI. The first one is the initial loading time of the webinterface of ArgoCD here I have seen loading times of up to a minute at around (3000-4000 ArgoCD apps). The second is the general responsiveness of the ArgoCD UI when filtering or searching. From my experience this change described here will only bring changes to the second scenario. The first one is mainly caused by inefficient rbac processing and can be improved by better rbac configuration. You can get 3000-4000 Argo apps easily in only one Argo instance with an initial loading time of like 3-5 seconds if you configure rbac more effectively. Maybe this helps to point you in the right direction @netashiloh |
@naturboy Our issue is mostly the first one you specified- the initial loading time of the webinterface of ArgoCD.
Note: Don't take our values as best practice, it's still a trial an error to see what's working for us. For reference, we work in a growing environment of 3000-7000 apps (we have dynamic envs). There is still room for improvement and I'm sure the server side pagination will help. I plan to review high availability argocd doc for more improvements we can do. Can you share the recommended configurations of RBAC too? |
@netashiloh Split into multiple instances doesn't resolve the ui problem, the problem is many unnecessary react dom node created in the background. I don't know whether my pr would be accepted or not. You can build a image from my branch and test it. |
i maybe add virtual page soon,when list more than 1000 applications at one time |
We are also interested in this, we run 5k applications in ArgoCD and the UI is impossible to use |
We have 4000+ apps and the UI does not work now. Hopefully we can have this sooner |
does @ezxfv PR fixes this ? |
Any update on this? |
Hi! Any update on this? Thank you :) |
Summary
We're on ArgoCD
2.4.2+c6d0c8b
with more than 2000 Applications and suffering from an annoying issue with slow UI loading default/applications
endpoint. JFY: Gzip 9 is enabled on ArgoCD side and also on the Ingress level.Depending on the user's internet connection and location UI loading can take 10s - 20s that's really slow and makes us think about the doubtful workaround, like redirecting users from
/application
endpoint to the custom one with a dummy Application.Proposal
Endpoint
/application
returns one huge JSON that represents a set of ALL Applications managed by ArgoCD with all values, metadata, statuses, annotations, and the same for all managed k8s resources. It requires quite a lot of work on the client side and also on the server side for gzipping a big bunch of data.Per discussion with @crenshaw-dev in the
#argo-cd
Slack channel, he mentioned that server-side pagination is one of the solutions that might be implemented to reduce data downloading on the client-side and increase UI performance significantly.It would be great if the pagination will be customized, but it depends on implementation.
I guess it should be a really awaited feature due to there are a lot of issues/discussions about slow UI that were already reported/started. Example - #8446 where @rumstead already collected related issues.
I hope this is possible and really appreciate your time. Thanks!
The text was updated successfully, but these errors were encountered: