You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The JobService is currently submitting jobs executions to the underlying infra as a soon as a request is made.
However this approach can resulting in excess pressure on the underlying system (e.g. K8s cluster) under high usage or submission peaks.
A better approach would be to acquire the job execution request adding it to a queue for "pending" jobs, and processing it asynchronously, provided the number of running jobs does not exceed a given quota.
The JobService is currently submitting jobs executions to the underlying infra as a soon as a request is made.
However this approach can resulting in excess pressure on the underlying system (e.g. K8s cluster) under high usage or submission peaks.
A better approach would be to acquire the job execution request adding it to a queue for "pending" jobs, and processing it asynchronously, provided the number of running jobs does not exceed a given quota.
Related to #603
The text was updated successfully, but these errors were encountered: