alirezazamani opened a new issue #1062: URL: https://github.com/apache/helix/issues/1062
In TaskDriver.java in method enqueueJobs, if we are below the capacity limit of the queue and with addition of the new jobs we exceed the capacity limit of the queue, we add jobConfig to ZK but we would not add the job to job the DAG. Hence, we will have many jobConfigs in the ZK which will not be executed and purged because they have not been added to job Dag. Example: Capacity = 5 and current job DAG is [A, B. C. D] If we would like add 10 more jobs, we would have 10 more znodes for the job config (because we just the currentSize <= Capacity), but since currentSize(4) + jobsToBeAdded(10) will exceeds the capacity, TaskDriver would not add the jobs to the DAG. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
