You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ji...@apache.org on 2020/01/06 07:42:15 UTC

[incubator-iotdb] branch cluster_new updated (9cb4663 -> dd8aadf)

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

jiangtian pushed a change to branch cluster_new
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


    from 9cb4663  change bytebuffer to bytes in Murmur128Hash; working on Cluster partition
     add 99d5e3b  add test of LogManager
     add dd8aadf  Merge branch 'cluster_new' of github.com:apache/incubator-iotdb into cluster_new

No new revisions were added by this update.

Summary of changes:
 .../org/apache/iotdb/cluster/log/LogManager.java   |   4 +-
 .../iotdb/cluster/log/manage/MemoryLogManager.java |   2 +-
 .../log/manage/PartitionedSnapshotLogManager.java  |   2 +-
 .../iotdb/cluster/log/snapshot/FileSnapshot.java   |   4 +-
 .../iotdb/cluster/log/snapshot/SimpleSnapshot.java |   2 +-
 .../iotdb/cluster/server/member/RaftMember.java    |   2 +-
 .../apache/iotdb/cluster/utils/PartitionUtils.java |   6 +-
 .../org/apache/iotdb/cluster/common/IoTDBTest.java |  46 ++-----
 .../org/apache/iotdb/cluster/common/TestLog.java   |  10 ++
 ...estMetaGroupMember.java => TestLogApplier.java} |  10 +-
 .../cluster/common/TestRemoteFileSnapshot.java     |  72 +++++++++++
 .../org/apache/iotdb/cluster/common/TestUtils.java |  35 ++++++
 .../cluster/log/applier/DataLogApplierTest.java    |  25 ++--
 .../cluster/log/applier/MetaLogApplierTest.java    |   5 +-
 .../FilePartitionedSnapshotLogManagerTest.java     |  99 +++++++++++++++
 .../cluster/log/manage/MemoryLogManagerTest.java   | 136 +++++++++++++++++++++
 .../manage/MetaSingleSnapshotLogManagerTest.java   |  64 ++++++++++
 .../manage/PartitionedSnapshotLogManagerTest.java  |  83 +++++++++++++
 18 files changed, 544 insertions(+), 63 deletions(-)
 copy cluster/src/test/java/org/apache/iotdb/cluster/common/{TestMetaGroupMember.java => TestLogApplier.java} (81%)
 create mode 100644 cluster/src/test/java/org/apache/iotdb/cluster/common/TestRemoteFileSnapshot.java
 create mode 100644 cluster/src/test/java/org/apache/iotdb/cluster/log/manage/FilePartitionedSnapshotLogManagerTest.java
 create mode 100644 cluster/src/test/java/org/apache/iotdb/cluster/log/manage/MemoryLogManagerTest.java
 create mode 100644 cluster/src/test/java/org/apache/iotdb/cluster/log/manage/MetaSingleSnapshotLogManagerTest.java
 create mode 100644 cluster/src/test/java/org/apache/iotdb/cluster/log/manage/PartitionedSnapshotLogManagerTest.java