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/06 09:34:37 UTC

[incubator-iotdb] branch cluster_new updated (32f3386 -> 7bc9c36)

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 32f3386  first commit
     add 7bc9c36  add heartbeat and election

No new revisions were added by this update.

Summary of changes:
 .../src/assembly/resources/conf/cluster-env.bat    |   0
 .../src/assembly/resources/conf/cluster-env.sh     |   0
 .../resources/conf/iotdb-cluster.properties        |  21 +-
 .../resources/conf/iotdb-engine.properties         |   0
 .../src/assembly/resources/conf/iotdb-env.bat      |   0
 .../src/assembly/resources/conf/iotdb-env.sh       |   0
 .../src/assembly/resources/conf/logback.xml        |   0
 .../src/assembly/resources/sbin/start-node.bat     |   0
 .../src/assembly/resources/sbin/start-node.sh      |   0
 .../org/apache/iotdb/cluster/ClusterServer.java    | 158 -------
 .../apache/iotdb/cluster/MetaClusterServer.java    | 520 +++++++++++++++++++++
 .../org/apache/iotdb/cluster/NodeCharacter.java    |   8 +-
 .../apache/iotdb/cluster/config/ClusterConfig.java |  26 +-
 .../iotdb/cluster/config/ClusterConstant.java      |  28 +-
 .../iotdb/cluster/config/ClusterDescriptor.java    |  84 +++-
 service-rpc/src/main/thrift/cluster.thrift         |  89 ++--
 16 files changed, 702 insertions(+), 232 deletions(-)
 copy server/src/assembly/resources/conf/iotdb-env.bat => cluster/src/assembly/resources/conf/cluster-env.bat (100%)
 copy server/src/assembly/resources/conf/iotdb-env.sh => cluster/src/assembly/resources/conf/cluster-env.sh (100%)
 copy server/src/assembly/resources/sbin/stop-server.sh => cluster/src/assembly/resources/conf/iotdb-cluster.properties (71%)
 mode change 100755 => 100644
 copy {server => cluster}/src/assembly/resources/conf/iotdb-engine.properties (100%)
 copy {server => cluster}/src/assembly/resources/conf/iotdb-env.bat (100%)
 copy {server => cluster}/src/assembly/resources/conf/iotdb-env.sh (100%)
 copy {server => cluster}/src/assembly/resources/conf/logback.xml (100%)
 copy server/src/assembly/resources/sbin/start-server.bat => cluster/src/assembly/resources/sbin/start-node.bat (100%)
 copy server/src/assembly/resources/sbin/start-server.sh => cluster/src/assembly/resources/sbin/start-node.sh (100%)
 delete mode 100644 cluster/src/main/java/org/apache/iotdb/cluster/ClusterServer.java
 create mode 100644 cluster/src/main/java/org/apache/iotdb/cluster/MetaClusterServer.java
 copy server/src/main/java/org/apache/iotdb/db/qp/physical/sys/ShowTTLPlan.java => cluster/src/main/java/org/apache/iotdb/cluster/config/ClusterConstant.java (55%)