You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by hu...@apache.org on 2020/02/25 22:45:35 UTC

[helix] branch zooscalability updated (f5c6f3f -> 33e7ad3)

This is an automated email from the ASF dual-hosted git repository.

hulee pushed a change to branch zooscalability
in repository https://gitbox.apache.org/repos/asf/helix.git.


    from f5c6f3f  [helix-rest] Add endpoint to get namespace routing data (#799)
     add 33e7ad3  Add HttpRoutingDataReader (#775)

No new revisions were added by this update.

Summary of changes:
 .../mock/TestMockMetadataStoreDirectoryServer.java |  84 ------------
 metadata-store-directory-common/pom.xml            |   5 +
 .../constant/MetadataStoreRoutingConstants.java    |   9 ++
 .../mock/MockMetadataStoreDirectoryServer.java     |  68 +++++++---
 .../mock/TestMockMetadataStoreDirectoryServer.java | 118 ++++++++++++++++
 zookeeper-api/pom.xml                              |   5 +
 .../zookeeper/util/HttpRoutingDataReader.java      | 149 +++++++++++++++++++++
 .../zookeeper/util/TestHttpRoutingDataReader.java  | 128 ++++++++++++++++++
 zookeeper-api/zookeeper-api-0.9.2-SNAPSHOT.ivy     |   1 +
 9 files changed, 465 insertions(+), 102 deletions(-)
 delete mode 100644 helix-rest/src/test/java/org/apache/helix/rest/metadatastore/mock/TestMockMetadataStoreDirectoryServer.java
 rename {helix-rest/src/test/java/org/apache/helix/rest/metadatastore => metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon}/mock/MockMetadataStoreDirectoryServer.java (61%)
 create mode 100644 metadata-store-directory-common/src/test/java/org/apache/helix/msdcommon/mock/TestMockMetadataStoreDirectoryServer.java
 create mode 100644 zookeeper-api/src/main/java/org/apache/helix/zookeeper/util/HttpRoutingDataReader.java
 create mode 100644 zookeeper-api/src/test/java/org/apache/helix/zookeeper/util/TestHttpRoutingDataReader.java