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 2021/01/18 01:59:06 UTC

[iotdb] branch master updated (3016cb9 -> 768ed2b)

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

jiangtian pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


    from 3016cb9  remove duplicate codes (waitForThreadPool) in the ClusterPlanExecutor and remove duplicate params of script (#2502)
     new c343d5a  optime inserttablets
     new 1edfa05  revert the change in sessionexample
     new 8fcab59  resolve the sonar issue
     new 318afac  optime inserttablets
     new adb0765  revert the change in sessionexample
     new 245506b  add insert InsertTabletMultiPlan test
     new e7d28e3  add lincese header
     new 5348e42  fix the serialize and unseralize method
     new 4c5e1cb  remove useless debug log
     new f6a935a  fix apply InsertMultiTabletPlan
     new 8a8c094  fix some typo
     new 0b51d8b  fix some typo&remove insertTabletsInternalV1
     new 4b7f40d  merge with master
     new 00c6c7a  split the insertMultiTabletPlan to some have some storage group InsertTabletPlans
     new 224876f  fix some typo
     new 0ba64dc  Merge branch 'apache_master' into apache_master_0106_optimize_inserttablets
     new 25bddb9  remove uncessary put operation of hashmap in ClusterPlanRouter
     new 27acead  Merge branch 'apache_master' into apache_master_0106_optimize_inserttablets
     new 768ed2b  Merge pull request #2454 from neuyilan/apache_master_0106_optimize_inserttablets

The 4529 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:
 .../iotdb/cluster/coordinator/Coordinator.java     | 165 +++++++----
 .../cluster/log/applier/AsyncDataLogApplier.java   |  13 +-
 .../iotdb/cluster/log/applier/BaseApplier.java     |   2 +-
 .../iotdb/cluster/log/applier/DataLogApplier.java  |  13 +-
 .../apache/iotdb/cluster/metadata/CMManager.java   |  26 +-
 .../iotdb/cluster/query/ClusterPlanRouter.java     |  74 +++++
 .../apache/iotdb/db/qp/executor/IPlanExecutor.java |   8 +
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  15 +
 .../org/apache/iotdb/db/qp/logical/Operator.java   |   2 +-
 .../apache/iotdb/db/qp/physical/PhysicalPlan.java  |   7 +-
 .../db/qp/physical/crud/InsertMultiTabletPlan.java | 326 +++++++++++++++++++++
 .../db/qp/physical/crud/InsertTabletPlan.java      |   6 +
 .../org/apache/iotdb/db/service/TSServiceImpl.java |  63 ++--
 .../db/qp/physical/InsertTabletMultiPlanTest.java  |  99 +++++++
 .../iotdb/db/qp/physical/InsertTabletPlanTest.java | 105 +++++++
 15 files changed, 835 insertions(+), 89 deletions(-)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/qp/physical/crud/InsertMultiTabletPlan.java
 create mode 100644 server/src/test/java/org/apache/iotdb/db/qp/physical/InsertTabletMultiPlanTest.java
 create mode 100644 server/src/test/java/org/apache/iotdb/db/qp/physical/InsertTabletPlanTest.java