You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by yu...@apache.org on 2020/06/24 14:38:07 UTC

[incubator-iotdb] branch kyy updated (acc1896 -> 10f1994)

This is an automated email from the ASF dual-hosted git repository.

yuyuankang pushed a change to branch kyy
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


    from acc1896  exception message
     add 96cbb3a  [IOTDB-781] Support AlterTimeSeriesPlan in distributed version
     add 1030519  Merge pull request #1405 from neuyilan/cluster_new_IOTDB-781
     add bacbbe7  [IOTDB-726] CheckPoint of MTree (#1384)
     add 1862184  fix python client example that be inconsistent with Server's thrift Transport instance
     add e4801d9  update slides link to slideshare
     add 2aa15ee  Merge branch 'master' into cluster_new
     add 9e96e92  wait for leader before forwarding
     add 2766972  fix step down and increase client pool capacity
     add 1716cf4  fix when a node becomes leader after waiting for leader
     add 10f1994  fix conflict

No new revisions were added by this update.

Summary of changes:
 client-py/src/client_example.py                    |  17 ++-
 .../iotdb/cluster/client/async/ClientPool.java     |   2 +-
 .../apache/iotdb/cluster/config/ClusterConfig.java |   2 +-
 .../cluster/partition/SlotPartitionTable.java      |   2 +-
 .../iotdb/cluster/query/ClusterPlanRouter.java     |  16 ++-
 .../apache/iotdb/cluster/server/NodeReport.java    |   5 +-
 .../server/handlers/caller/ElectionHandler.java    |   2 +-
 .../server/handlers/caller/HeartbeatHandler.java   |   2 +-
 .../server/handlers/caller/LogCatchUpHandler.java  |   2 +-
 .../handlers/caller/LogCatchUpInBatchHandler.java  |   2 +-
 .../cluster/server/member/DataGroupMember.java     |  11 ++
 .../cluster/server/member/MetaGroupMember.java     |  12 ++
 .../iotdb/cluster/server/member/RaftMember.java    |  25 ++--
 .../apache/iotdb/cluster/utils/PartitionUtils.java |   6 +-
 docs/Community/Materials.md                        |   6 +-
 docs/SystemDesign/SchemaManager/SchemaManager.md   |  10 ++
 docs/UserGuide/Concept/Encoding.md                 |   2 +
 docs/UserGuide/Server/Config Manual.md             |   9 ++
 .../zh/SystemDesign/SchemaManager/SchemaManager.md |  12 +-
 docs/zh/UserGuide/Concept/Encoding.md              |   2 +
 docs/zh/UserGuide/Server/Config Manual.md          |  19 ++-
 .../resources/conf/iotdb-engine.properties         |   7 +
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  37 +++++-
 .../org/apache/iotdb/db/conf/IoTDBConfigCheck.java |  70 +++++-----
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |   7 +-
 .../org/apache/iotdb/db/metadata/MLogWriter.java   |  48 ++++---
 .../org/apache/iotdb/db/metadata/MManager.java     | 147 +++++++++++++++++----
 .../java/org/apache/iotdb/db/metadata/MTree.java   | 120 ++++++++++++++---
 .../apache/iotdb/db/metadata/MetadataConstant.java |   2 +
 .../org/apache/iotdb/db/metadata/mnode/MNode.java  |   2 +-
 .../apache/iotdb/db/qp/physical/PhysicalPlan.java  |   7 +-
 .../db/qp/physical/crud/InsertTabletPlan.java      |   8 +-
 .../db/qp/physical/sys/AlterTimeSeriesPlan.java    | 136 +++++++++++++++++--
 .../iotdb/tsfile/utils/ReadWriteIOUtils.java       | 100 +++++++-------
 .../iotdb/tsfile/utils/ReadWriteIOUtilsTest.java   | 142 ++++++++++++++++++++
 35 files changed, 778 insertions(+), 221 deletions(-)
 mode change 100644 => 100755 client-py/src/client_example.py
 create mode 100644 tsfile/src/test/java/org/apache/iotdb/tsfile/utils/ReadWriteIOUtilsTest.java