-
Notifications
You must be signed in to change notification settings - Fork 2k
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
[UI] The Jobs page shows "No jobs found" after being idle for two minutes. #23228
Comments
I have this behavior too in my clusters |
Seeing the same behaviour in my cluster after updating to 1.8.0 It looks like the web-ui tries to access some endpoints in the nomad api which have "long running" semantics. I think the is the new "live update" of the jobs page. These should be the requests with a I run a reverse proxy in front of nomad ui which has a upstream timeout of 60s. The first request is aborted exactly after 60s (see chrome dev tools screenshot). You can tell from the access log that nginx aborted the request, because there was no content sent by nomad.
Nginx temporarily disables the timed-out upstream so the retries by the webfrontend fail as well until the frontend gives up and no further retries are made. In my case I should have read the documentation a little better because it is clearly state by the docs: |
Thanks everybody for your reports and patience on this issue — we've fixed the bug in #23427 and given options to pause fetching in case lengthening proxy timeout is not immediately possible. |
I'm going to lock this issue because it has been closed for 120 days ⏳. This helps our maintainers find and focus on the active issues. |
Nomad version
Nomad v1.8.0
BuildDate 2024-05-28T17:38:17Z
Revision 28b82e4
Operating system and Environment details
Distributor ID: Ubuntu
Description: Ubuntu 24.04 LTS
Release: 24.04
Codename: noble
Issue
The Jobs page shows "No jobs found" after being idle for a few minutes. This might worry users if they have many jobs running and become lost (even if only in display). It returns to normal once you refresh the page.
Reproduction steps
Expected Result
The page should display the jobs whether you are idle or not.
Actual Result
The Jobs page shows "No jobs found." when you become idle for two minutes.
The text was updated successfully, but these errors were encountered: