This is an automated email from the ASF dual-hosted git repository.
jiajunwang pushed a change to branch wagedImprove
in repository https://gitbox.apache.org/repos/asf/helix.git.
omit f92dfd5 Increase largest possible rebalance preference ratio (#1668)
omit de279e5 New PartitionMovementConstraint and
BaselineInfluenceConstraint for Waged (#1658)
omit 128ccde Add TopStateUsage constraint to Waged (#1652)
add 6a957b9 Fix TestClusterAccessor. (#1657)
add bdf4dbd Compatible support for ZNRecord to work with Jackson 1 mapper
(#1659)
add 3506910 Use thread pool for batched call back handling events (#1645)
add e2423e5 Add test wait time for stablizing TestZkClientAsyncRetry.
(#1673)
add 72541ea Track failures for async read/write in ZkClient (#1663)
add 386a77d Upgrade maven plugins to improve build speed (#1674)
add d0698bb Use specific message for stoppable API partitions in the
initial state (#1680)
add d5f5273 Change participant message monitor to use dynamic metric
(#1685)
add 6d9ff4b Improve the GenericHelixController global tracking record to
support multiple controller objects for the same cluster in one JVM. (#1676)
add 918f60e Close zkClients created by TaskStateModelFactory (#1678)
add 0a5682f Revert "Change participant message monitor to use dynamic
metric (#1685)" (#1693)
add 5eae445 Directly use Best Possible State to calculate
DifferenceWithIdealStateGauge metrics instead of relying on the persisted
IdealState. (#1697)
add 35b5ec1 Add option to continue checks on failures for stoppable api
(#1689)
add 551a70f Add tutorial for Helix distributed lock (#1687)
add 24c3c24 Change participant message monitor from static metric to
dynamic metric (#1696)
add 5414f86 Fix unexpected result when resuming a cluster from
paused/maintenance mode. (#1698)
add 10810a2 Skip out-of-date tests in the Helix Merge CI test and
generate code coverage report.
add 07c5d22 Upload the code coverage report to codecov.
add 8b25033 Update README.md
add 01d6465 Add ignore paths to the codecov setting.
add 7032f22 Enhance and simplify the Github Action script.
add c22b312 Keep the PR CI and merge to master CI separate so the
corresponding badge is accurate.
add a1a6cb0 Add -fae for continue testing on partial tests failure.
add 2215ef9 Print test result with annotations.
add d0167e4 Ensure the CI result report action is done even test fails.
add 5c9aa78 Fix flaky TestAssignableInstanceManager (#1708)
add dcd6966 Enforce the jacoco-maven-plugin version to avoid warning
messages. (#1711)
add f29359a Fix the unstable test TestDisableCustomCodeRunner. (#1710)
new 5db7301 Add TopStateUsage constraint to Waged (#1652)
new 89877b8 New PartitionMovementConstraint and
BaselineInfluenceConstraint for Waged (#1658)
new c76d3a0 Increase largest possible rebalance preference ratio (#1668)
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (f92dfd5)
\
N -- N -- N refs/heads/wagedImprove (c76d3a0)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 3 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:
.github/codecov.yml | 3 +
build => .github/scripts/printTestResult.sh | 14 +-
.github/workflows/Helix-CI.yml | 31 +--
.github/workflows/Helix-PR-CI.yml | 49 +---
.github/workflows/Helix-PR-Premerge-Check.yml | 14 +-
README.md | 1 +
helix-admin-webapp/pom.xml | 1 +
helix-agent/pom.xml | 1 +
.../src/main/java/org/apache/helix/ZNRecord.java | 14 +-
.../helix/controller/GenericHelixController.java | 124 ++++++---
.../ResourceControllerDataProvider.java | 20 +-
.../stages/BestPossibleStateCalcStage.java | 63 ++++-
.../stages/ExternalViewComputeStage.java | 5 +-
.../controller/stages/PersistAssignmentStage.java | 33 ++-
.../helix/manager/zk/CallbackEventExecutor.java | 129 ++++++++++
.../manager/zk/CallbackEventThreadPoolFactory.java | 110 ++++++++
.../apache/helix/manager/zk/CallbackHandler.java | 72 ++----
.../monitoring/mbeans/ClusterStatusMonitor.java | 19 +-
.../monitoring/mbeans/MessageLatencyMonitor.java | 2 +-
.../mbeans/ParticipantMessageMonitor.java | 97 +++----
.../mbeans/ParticipantMessageMonitorMBean.java | 31 ---
.../mbeans/ParticipantStatusMonitor.java | 62 ++---
.../apache/helix/store/PropertyJsonSerializer.java | 22 +-
.../apache/helix/task/TaskStateModelFactory.java | 62 +++--
.../apache/helix/util/InstanceValidationUtil.java | 21 +-
.../java/org/apache/helix/util/RebalanceUtil.java | 7 +-
.../org/apache/helix/TestShuffledIdealState.java | 6 +-
.../integration/TestDisableCustomCodeRunner.java | 77 +++---
.../helix/manager/zk/TestZNRecordSerializer.java | 122 +++++++--
.../helix/monitoring/TestParticipantMonitor.java | 107 +++++++-
.../mbeans/TestClusterAggregateMetrics.java | 2 +-
.../mbeans/TestClusterStatusMonitor.java | 15 +-
.../helix/task/TestAssignableInstanceManager.java | 4 +-
.../helix/task/TestTaskStateModelFactory.java | 48 ++--
.../org/apache/helix/tools/TestHelixAdminCli.java | 5 -
helix-rest/pom.xml | 5 -
.../rest/server/json/instance/StoppableCheck.java | 5 +
.../rest/server/resources/AbstractResource.java | 9 +
.../resources/helix/AbstractHelixResource.java | 2 +-
.../server/resources/helix/InstancesAccessor.java | 15 +-
.../resources/helix/PerInstanceAccessor.java | 38 ++-
.../server/resources/helix/ResourceAccessor.java | 2 +-
.../rest/server/service/InstanceServiceImpl.java | 57 +++--
.../helix/rest/server/AbstractTestClass.java | 7 +-
.../helix/rest/server/TestClusterAccessor.java | 30 +--
.../helix/rest/server/TestInstancesAccessor.java | 2 -
.../helix/rest/server/TestPerInstanceAccessor.java | 9 +-
.../rest/server/TestPropertyStoreAccessor.java | 2 +-
.../rest/server/service/TestInstanceService.java | 68 ++++-
.../util/TestInstanceValidationUtilInRest.java | 66 ++++-
...adata-store-directory-common-1.0.2-SNAPSHOT.ivy | 2 +-
metadata-store-directory-common/pom.xml | 2 +-
pom.xml | 34 ++-
website/1.0.1/src/site/markdown/Tutorial.md | 1 +
.../src/site/markdown/tutorial_distributed_lock.md | 191 ++++++++++++++
.../images/HelixPriorityLockWorkflow.jpeg | Bin 0 -> 145221 bytes
zookeeper-api/pom.xml | 10 +-
.../zookeeper/datamodel/SessionAwareZNRecord.java | 2 +-
.../apache/helix/zookeeper/datamodel/ZNRecord.java | 14 +-
.../serializer/ZNRecordJacksonSerializer.java | 5 +-
.../datamodel/serializer/ZNRecordSerializer.java | 9 +-
.../serializer/ZNRecordStreamingSerializer.java | 2 +-
.../introspect/CodehausJacksonIntrospector.java | 278 +++++++++++++++++++++
.../apache/helix/zookeeper/zkclient/ZkClient.java | 102 +++++---
.../callback/ZkAsyncCallMonitorContext.java | 18 +-
.../zkclient/callback/ZkAsyncCallbacks.java | 25 +-
.../zookeeper/zkclient/metric/ZkClientMonitor.java | 26 ++
.../zkclient/metric/ZkClientPathMonitor.java | 58 +++++
.../TestZNRecordSerializeWriteSizeLimit.java | 2 +
.../zookeeper/impl/client/TestRawZkClient.java | 16 +-
.../impl/client/TestZkClientAsyncRetry.java | 233 +++++++++++++++--
zookeeper-api/zookeeper-api-1.0.2-SNAPSHOT.ivy | 1 +
72 files changed, 2103 insertions(+), 638 deletions(-)
create mode 100644 .github/codecov.yml
copy build => .github/scripts/printTestResult.sh (71%)
create mode 100644
helix-core/src/main/java/org/apache/helix/manager/zk/CallbackEventExecutor.java
create mode 100644
helix-core/src/main/java/org/apache/helix/manager/zk/CallbackEventThreadPoolFactory.java
delete mode 100644
helix-core/src/main/java/org/apache/helix/monitoring/mbeans/ParticipantMessageMonitorMBean.java
create mode 100644 website/1.0.1/src/site/markdown/tutorial_distributed_lock.md
create mode 100644
website/1.0.1/src/site/resources/images/HelixPriorityLockWorkflow.jpeg
create mode 100644
zookeeper-api/src/main/java/org/apache/helix/zookeeper/introspect/CodehausJacksonIntrospector.java