Details
Description
My guess is that the heuristic for computing the progress column on the running jobs is making it slow.
Could they put instead of 'progress': job.get_progress(),' https://github.com/cloudera/hue/blob/cdh4-2.5.0_4.5.0.x/apps/oozie/src/oozie/views/dashboard.py#L620
'progress': not job.is_running() and 100 or job.get_progress(),
or just if still too slow:
'progress': 100,
+ check other API calls, cache, paginate or minimize them
Attachments
Issue Links
- relates to
-
HUE-2227 [oozie] Add a limit=N and recent=M when fetching job logs
-
- Resolved
-