0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2025-04-01 02:42:32 -05:00
zot/pkg
Andrei Aaron 8215766720
fix: the scheduler is now fair (#2158)
Generators are now ordered by rank in the priority queue.

The rank computation formula is:
- 100/(1+generated_task_count) for high priority tasks
- 10/(1+generated_task_count) for medium priority tasks
- 1/(1+generated_task_count) for low priority tasks

Note the ranks are used when comparing generators both with the same priority and with different priority.
So now we are:
- giving an opportunity to all generators with the same priority to take turns generating tasks
- giving roughly 1 low priority and 10 medium priority tasks the opportunity to run for every 100 high priority tasks running.

After a generator generates a task, the generators are reordered in the priority queue based on rank.

Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
2024-01-25 09:05:47 -08:00
..
api fix(bearer): fixed /v2/ route not implementing token spec (#2176) 2024-01-22 09:15:27 -08:00
cli feat(cve): add option to exclude string from cve search (#2163) 2024-01-19 12:59:42 -08:00
common feat(CVE): add CVE severity counters to returned images and CVE list calls (#2131) 2023-12-13 09:16:31 -08:00
compliance fix(scheduler): fix data race (#2085) 2023-12-11 10:00:34 -08:00
debug fix: tests refactoring (#1950) 2023-10-26 11:20:39 +03:00
exporter fix: high CPU utilization by scheduler while idle (#2156) 2024-01-11 09:30:16 -08:00
extensions refactor: replace deprecated APIs for creating images in the search tests (#2173) 2024-01-22 09:10:34 -08:00
log refactor(test): add lint rule for messages starting with the component (#2045) 2023-12-08 10:05:02 +02:00
meta refactor: update tests to use the newer API for creating test images (#2168) 2024-01-17 10:20:07 -08:00
regexp chore(trivy): update trivy version and enforce OCI compliant repo names in local image storage (#1068) 2023-01-18 08:24:44 -08:00
requestcontext feat(ui): let UI delete manifests if current user has permissions to do so (#2132) 2023-12-13 09:06:08 -08:00
retention feat(scheduler): gracefully shutdown (#1951) 2023-11-24 00:40:10 -08:00
scheduler fix: the scheduler is now fair (#2158) 2024-01-25 09:05:47 -08:00
storage refactor: update tests to use the newer API for creating test images (#2168) 2024-01-17 10:20:07 -08:00
test fix(bearer): fixed /v2/ route not implementing token spec (#2176) 2024-01-22 09:15:27 -08:00