This is an automated email from the ASF dual-hosted git repository.
hulee pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git.
from e243175 Add Hunter Lee as Committer
new cb92df7 HELIX: Fix typo in ResourceControllerDataProvider's API
new be3dd97 Fix N -> N + 1 extra bootstrap
new 6e94d97 Fix read previous assignment for workflows
new 177a3fb HELIX: Fix all DataUpdaters so that it checks for null previous records
new 3c33188 TASK: Fix bug where JobDispatcher does not create UserContentStore for new
jobs
new de38fa1 HELIX: Recovery balance partitions with disabled top-state replicas
new ddfc933 HELIX: Bypass throttling for disabled partitions
new b9e7b5c TASK: Fix bug in isWorkflowStopped
new 8ba4c9c TASK2.0: Add performance metrics to JobMonitor
new 0ad8af4 TASK2.0: Job scheduling core pipeline fixes
The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../apache/helix/common/caches/TaskDataCache.java | 24 +-
.../ResourceControllerDataProvider.java | 4 +-
.../rebalancer/DelayedAutoRebalancer.java | 15 +-
.../stages/IntermediateStateCalcStage.java | 98 +++--
.../controller/stages/MessageGenerationPhase.java | 8 +-
.../stages/task/TaskSchedulingStage.java | 5 +-
.../java/org/apache/helix/manager/zk/ZKUtil.java | 8 +-
.../monitoring/mbeans/ClusterStatusMonitor.java | 35 +-
.../apache/helix/monitoring/mbeans/JobMonitor.java | 220 +++++----
.../apache/helix/task/AbstractTaskDispatcher.java | 164 ++++++-
.../java/org/apache/helix/task/JobContext.java | 37 +-
.../java/org/apache/helix/task/JobDispatcher.java | 39 +-
.../java/org/apache/helix/task/JobRebalancer.java | 12 +-
.../java/org/apache/helix/task/RuntimeJobDag.java | 12 +-
.../java/org/apache/helix/task/TaskDriver.java | 11 +-
.../main/java/org/apache/helix/task/TaskUtil.java | 42 +-
.../org/apache/helix/task/WorkflowContext.java | 2 +-
.../org/apache/helix/task/WorkflowDispatcher.java | 32 +-
.../org/apache/helix/task/WorkflowRebalancer.java | 2 +-
.../java/org/apache/helix/tools/ClusterSetup.java | 10 +-
.../tools/commandtools/CurrentStateCleanUp.java | 8 +-
.../rebalancer/TestZeroReplicaAvoidance.java | 37 +-
...ority.java => TestStateTransitionPriority.java} | 2 +-
.../TestNoThrottleDisabledPartitions.java | 490 +++++++++++++++++++++
.../helix/integration/task/TaskTestUtil.java | 4 +-
.../helix/integration/task/TestEnqueueJobs.java | 99 +++++
.../helix/integration/task/TestJobFailure.java | 1 +
.../integration/task/TestRecurringJobQueue.java | 5 +-
.../task/TestTaskRebalancerStopResume.java | 16 +-
.../mbeans/TestTaskPerformanceMetrics.java | 151 +++++++
.../task/TestGetLastScheduledTaskExecInfo.java | 2 +-
.../TestDelayedAutoRebalancer.MasterSlave.json | 137 ++++++
32 files changed, 1521 insertions(+), 211 deletions(-)
rename helix-core/src/test/java/org/apache/helix/controller/stages/{TestStateTransitionPrirority.java
=> TestStateTransitionPriority.java} (99%)
create mode 100644 helix-core/src/test/java/org/apache/helix/integration/TestNoThrottleDisabledPartitions.java
create mode 100644 helix-core/src/test/java/org/apache/helix/integration/task/TestEnqueueJobs.java
create mode 100644 helix-core/src/test/java/org/apache/helix/monitoring/mbeans/TestTaskPerformanceMetrics.java
|