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/06/19 01:51:11 UTC

[incubator-iotdb] branch cluster_new updated (69c9e14 -> abf0cbc)

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 69c9e14  add log and fix NonPartitionedDataPlan
     new ac56578  [IOTDB-722] support three consistency levels: strong, mid and weak
     new 90a4bfe  [IOTDB-722] add some tests
     new abf0cbc  Merge pull request #1380 from neuyilan/cluster_new_IOTDB-722

The 4297 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:
 .../resources/conf/iotdb-cluster.properties        |   8 +
 .../apache/iotdb/cluster/config/ClusterConfig.java |  22 ++-
 .../iotdb/cluster/config/ClusterDescriptor.java    |   5 +
 .../iotdb/cluster/config/ConsistencyLevel.java     |  69 ++++++++
 ...ception.java => CheckConsistencyException.java} |  14 +-
 .../iotdb/cluster/log/applier/BaseApplier.java     |  13 +-
 .../iotdb/cluster/log/applier/DataLogApplier.java  |   7 +-
 .../iotdb/cluster/query/ClusterPlanExecutor.java   | 156 +++++++++++++----
 .../query/last/ClusterLastQueryExecutor.java       |  17 +-
 .../iotdb/cluster/server/DataClusterServer.java    |   9 +-
 .../cluster/server/member/DataGroupMember.java     | 186 +++++++++++++--------
 .../cluster/server/member/MetaGroupMember.java     |  92 +++++++---
 .../iotdb/cluster/server/member/RaftMember.java    |  30 +++-
 .../cluster/log/applier/DataLogApplierTest.java    |  17 +-
 .../iotdb/cluster/server/member/MemberTest.java    | 126 +++++++++++++-
 15 files changed, 612 insertions(+), 159 deletions(-)
 create mode 100644 cluster/src/main/java/org/apache/iotdb/cluster/config/ConsistencyLevel.java
 copy cluster/src/main/java/org/apache/iotdb/cluster/exception/{NoHeaderNodeException.java => CheckConsistencyException.java} (64%)