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/07 02:35:36 UTC

[incubator-iotdb] branch cluster_new updated (dd8aadf -> 37a8538)

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 dd8aadf  Merge branch 'cluster_new' of github.com:apache/incubator-iotdb into cluster_new
     add 37a8538  add tests of snapshots

No new revisions were added by this update.

Summary of changes:
 .../apache/iotdb/cluster/RemoteTsFileResource.java |   2 +-
 .../apache/iotdb/cluster/client/DataClient.java    |   2 +-
 .../cluster/log/snapshot/DataSimpleSnapshot.java   |  18 ++
 .../iotdb/cluster/log/snapshot/FileSnapshot.java   |  23 +-
 .../cluster/log/snapshot/MetaSimpleSnapshot.java   |  21 ++
 .../cluster/log/snapshot/PartitionedSnapshot.java  |  21 +-
 .../cluster/log/snapshot/PullSnapshotTask.java     |  27 ++-
 .../log/snapshot/RemoteDataSimpleSnapshot.java     |   4 +
 .../cluster/log/snapshot/RemoteFileSnapshot.java   |   2 +-
 .../iotdb/cluster/log/snapshot/SimpleSnapshot.java |  20 +-
 .../cluster/server/member/DataGroupMember.java     |   6 +
 .../cluster/log/snapshot/PullSnapshotTaskTest.java |  82 +++++++
 .../log/snapshot/SnapshotSerializeTest.java        | 265 +++++++++++++++++++++
 .../db/qp/physical/sys/CreateTimeSeriesPlan.java   |  23 +-
 14 files changed, 495 insertions(+), 21 deletions(-)
 create mode 100644 cluster/src/test/java/org/apache/iotdb/cluster/log/snapshot/PullSnapshotTaskTest.java
 create mode 100644 cluster/src/test/java/org/apache/iotdb/cluster/log/snapshot/SnapshotSerializeTest.java