This is an automated email from the ASF dual-hosted git repository.
lta pushed a change to branch cluster
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.
from 65f88ac support new port
new 74ee815 add cluster shell script
new e3485ae add cluster default conf
new ea8f78a add raft option while creating raft group service
new 49855e1 Merge branch 'cluster' of github.com:apache/incubator-iotdb
into cluster
new e9555f6 fix bug to startup cluster
The 1554 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:
cluster/pom.xml | 129 ++++++++++++++++++++-
.../apache/iotdb/cluster/config/ClusterConfig.java | 86 ++++++++------
.../iotdb/cluster/config/ClusterConstant.java | 27 -----
.../iotdb/cluster/config/ClusterDescriptor.java | 11 +-
.../org/apache/iotdb/cluster/entity/Server.java | 10 +-
.../cluster/entity/metadata/IMetadataHolder.java | 3 +
.../entity/raft/DataPartitionRaftHolder.java | 29 ++++-
.../cluster/entity/raft/MetadataRaftHolder.java | 4 +-
.../iotdb/cluster/entity/raft/RaftService.java | 21 +++-
.../cluster/qp/executor/NonQueryExecutor.java | 8 +-
.../processor/ChangeMetadataAsyncProcessor.java | 5 +-
.../cluster/rpc/request/ChangeMetadataRequest.java | 9 +-
.../iotdb/cluster/utils/hash/RouterTest.java | 18 +++
{iotdb => cluster}/src/test/resources/logback.xml | 0
.../bin/{start-server.bat => start-cluster.bat} | 6 +-
.../bin/{start-server.sh => start-cluster.sh} | 6 +-
.../bin/{stop-sync-client.bat => stop-cluster.bat} | 4 +-
.../iotdb/bin/{stop-server.sh => stop-cluster.sh} | 6 +-
.../iotdb-cluster.properties} | 34 ++++--
iotdb/iotdb/conf/iotdb-engine.properties | 2 +
.../java/org/apache/iotdb/db/conf/IoTDBConfig.java | 12 ++
.../org/apache/iotdb/db/conf/IoTDBConstant.java | 2 +
.../org/apache/iotdb/db/conf/IoTDBDescriptor.java | 7 +-
23 files changed, 331 insertions(+), 108 deletions(-)
delete mode 100644
cluster/src/main/java/org/apache/iotdb/cluster/config/ClusterConstant.java
copy {iotdb => cluster}/src/test/resources/logback.xml (100%)
copy iotdb/iotdb/bin/{start-server.bat => start-cluster.bat} (95%)
copy iotdb/iotdb/bin/{start-server.sh => start-cluster.sh} (93%)
copy iotdb/iotdb/bin/{stop-sync-client.bat => stop-cluster.bat} (82%)
copy iotdb/iotdb/bin/{stop-server.sh => stop-cluster.sh} (85%)
copy iotdb/iotdb/{bin/stop-sync-client.sh => conf/iotdb-cluster.properties}
(66%)
mode change 100755 => 100644