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/28 13:35:44 UTC

[incubator-iotdb] branch cluster_new updated (3c7dbf7 -> 58e67c8)

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 3c7dbf7  Merge branch 'cluster_premerge2' into cluster_new
     add e4f19e5  auto schema creation
     add 267c814  add comment
     add 484bde7  fix sonar
     add 8ea91ee  fix conflict
     add 0bca1a8  error->debug
     add da7a76a  cluster properties
     add 283cf21  map -> list
     add 78c7c23  measurement -> timeseries
     add 3c7b507  change name
     add 523f106  route meta
     add 4687aaa  fix conflict
     add 2493bcc  exception report
     add 362b4d0  insertPlan backup
     add d98656a  clone
     add dfc17a5  new error code
     add ec1a351  executeNonQuery -> processNonPartitionedMetaPlan
     add c1a9f42  check storage group already set
     add acc1896  exception message
     add 10f1994  fix conflict
     add ef2fd52  test
     add b9ba68f  fix sonar
     add 58e67c8  Merge pull request #1387 from apache/kyy

No new revisions were added by this update.

Summary of changes:
 .../resources/conf/iotdb-cluster.properties        |   3 +
 .../java/org/apache/iotdb/cluster/ClusterMain.java |   1 +
 .../cluster/client/sync/SyncClientAdaptor.java     |  10 ++
 .../apache/iotdb/cluster/config/ClusterConfig.java |  13 ++
 .../iotdb/cluster/config/ClusterDescriptor.java    |   4 +
 .../iotdb/cluster/server/DataClusterServer.java    |   7 +
 .../cluster/server/member/DataGroupMember.java     |  31 +++++
 .../cluster/server/member/MetaGroupMember.java     | 145 ++++++++++++++++++++-
 .../iotdb/cluster/server/member/RaftMember.java    |   1 -
 .../exception/metadata/PathNotExistException.java  |  20 ++-
 .../apache/iotdb/db/qp/executor/IPlanExecutor.java |   3 +-
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  51 ++++----
 .../iotdb/db/qp/physical/crud/InsertPlan.java      |  35 +++--
 .../iotdb/db/utils/EncodingInferenceUtils.java     |  53 ++++++++
 .../apache/iotdb/db/integration/IoTDBTtlIT.java    |   4 +-
 .../java/org/apache/iotdb/rpc/TSStatusCode.java    |   1 +
 service-rpc/src/main/thrift/cluster.thrift         |   2 +
 17 files changed, 338 insertions(+), 46 deletions(-)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/utils/EncodingInferenceUtils.java