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 2019/11/12 11:12:10 UTC

[incubator-iotdb] branch cluster_new updated (2ea221c -> f432c5f)

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 2ea221c  add comments and refinements
     add f05b603  add package partition
     add f432c5f  refactor rpc interfaces

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/iotdb/cluster/log/Log.java     |   2 +-
 .../iotdb/cluster/log/meta/PhysicalPlanLog.java    |  71 ++++++++++++
 .../PartitionGroup.java}                           |  12 ++-
 .../iotdb/cluster/partition/PartitionTable.java    |  56 ++++++++++
 .../iotdb/cluster/server/MetaClusterServer.java    | 119 +++++++--------------
 .../apache/iotdb/cluster/server/RaftServer.java    |  97 +++++++++++++++--
 .../apache/iotdb/db/qp/physical/PhysicalPlan.java  |  13 +++
 .../iotdb/db/qp/physical/crud/BatchInsertPlan.java |  81 ++++++++++++++
 .../iotdb/db/qp/physical/crud/DeletePlan.java      |  10 ++
 .../iotdb/db/qp/physical/crud/InsertPlan.java      |  21 ++++
 service-rpc/src/main/thrift/cluster.thrift         |  20 ++--
 11 files changed, 401 insertions(+), 101 deletions(-)
 create mode 100644 cluster/src/main/java/org/apache/iotdb/cluster/log/meta/PhysicalPlanLog.java
 copy cluster/src/main/java/org/apache/iotdb/cluster/{log/LogApplier.java => partition/PartitionGroup.java} (73%)
 create mode 100644 cluster/src/main/java/org/apache/iotdb/cluster/partition/PartitionTable.java