Github user kongweihan commented on a diff in the pull request: https://github.com/apache/helix/pull/89#discussion_r115851381 --- Diff: helix-core/src/main/java/org/apache/helix/task/JobRebalancer.java --- @@ -424,9 +425,15 @@ private ResourceAssignment computeResourceMapping(String jobResource, .contains(instance)) { continue; } + // 1. throttled by job configuration // Contains the set of task partitions currently assigned to the instance. Set<Integer> pSet = entry.getValue(); - int numToAssign = jobCfg.getNumConcurrentTasksPerInstance() - pSet.size(); + int jobCfgLimitation = jobCfg.getNumConcurrentTasksPerInstance() - pSet.size(); --- End diff -- Would it be better to make this small part a separate method? `int numToAssign = getNumToAssign(...)` This method is already too long.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---