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/04/28 02:48:57 UTC

[incubator-iotdb] branch cluster_new updated (54b222a -> c6ef5b6)

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 54b222a  fix replica number in test
     add c6ef5b6  [IOTDB-348] Implement LoadConfigurationPlan (#1102)

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/iotdb/cluster/ClusterMain.java |   6 +-
 .../iotdb/cluster/config/ClusterDescriptor.java    |  47 ++++++++-
 .../serializable/SyncLogDequeSerializer.java       |   2 +-
 .../cluster/partition/SlotPartitionTable.java      |   2 +-
 .../cluster/query/ClusterPhysicalGenerator.java    |  46 +++++++++
 .../iotdb/cluster/query/ClusterPlanExecutor.java   |  31 +++++-
 .../apache/iotdb/cluster/server/ClientServer.java  |   4 +-
 .../apache/iotdb/cluster/server/RaftServer.java    |   6 +-
 .../handlers/caller/AppendGroupEntryHandler.java   |   2 +-
 .../cluster/server/member/MetaGroupMember.java     |  10 +-
 .../iotdb/cluster/server/member/RaftMember.java    |   2 +-
 .../apache/iotdb/cluster/utils/PartitionUtils.java |   7 +-
 .../org/apache/iotdb/cluster/common/TestUtils.java |   6 +-
 .../cluster/partition/SlotPartitionTableTest.java  |  12 ++-
 .../caller/AppendGroupEntryHandlerTest.java        |   8 +-
 .../cluster/server/member/DataGroupMemberTest.java |   6 +-
 .../iotdb/cluster/server/member/MemberTest.java    |   6 +-
 .../org/apache/iotdb/db/qp/strategy/SqlBase.g4     |   7 +-
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |  50 ++++++----
 .../apache/iotdb/db/qp/constant/SQLConstant.java   |   2 +
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |   7 +-
 .../qp/logical/sys/LoadConfigurationOperator.java  |  13 ++-
 .../apache/iotdb/db/qp/physical/PhysicalPlan.java  |   7 +-
 .../db/qp/physical/sys/LoadConfigurationPlan.java  | 105 ++++++++++++++++++++-
 .../iotdb/db/qp/strategy/LogicalGenerator.java     |   8 +-
 .../iotdb/db/qp/strategy/PhysicalGenerator.java    |  93 ++++++++++++++++--
 26 files changed, 416 insertions(+), 79 deletions(-)