-
Notifications
You must be signed in to change notification settings - Fork 3
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
Hangs on /api/execution #71
Comments
We currently have 30,000 executions, returning all of them on the collection REST GET call is unscalable. For now I've set a hard limit to 500 so it won't hang anymore but need to investigate a good strategy here. |
I see also there is one executation under |
All the executions serialized as JSON amount to about 60 MB of raw data per request, which isn't necessarily streamed. That is what caused the hangs. If the frontend is unavailable, the backend can't update an execution, hence the started execution. |
Closing this and track progress on a proper fix in #74. |
/api/execution
hangs.The text was updated successfully, but these errors were encountered: