You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2022/04/15 09:58:03 UTC

[iotdb] branch fix_storageenginev2_recover updated (0089a6a919 -> 03a81777c9)

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

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


 discard 0089a6a919 Update server/src/main/java/org/apache/iotdb/db/engine/StorageEngineV2.java
     add 93ee11b9f3 Add DataNodeTSIServiceImpl as RPCServiceImpl in mpp mode (#5540)
     add ad9401282f [IOTDB-2923] fix CI IoTDBSyncReceiverIT.testReceiveDataAndLoad  (#5548)
     add 8c38d6baac [IOTDB-2842] SHOW PIPE PipeName throws NPE if receiverService isn't initialize (#5414)
     add 6f8eadd8f0 fix the spotless issue in last PR (#5559)
     add e4d67226b0 Merge branch 'master' into fix_storageenginev2_recover
     add 6868808730 merge master and fix review
     add 03a81777c9 fix review

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (0089a6a919)
            \
             N -- N -- N   refs/heads/fix_storageenginev2_recover (03a81777c9)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../iotdb/confignode/conf/ConfigNodeConf.java      |   2 +-
 .../persistence/PartitionInfoPersistence.java      |   5 +-
 .../db/integration/sync/IoTDBSyncReceiverIT.java   |   1 +
 .../iotdb/db/integration/sync/SyncTestUtil.java    |  64 +-
 .../iotdb/commons/concurrent/ThreadName.java       |   1 +
 .../iotdb/commons/partition/DataPartition.java     |  28 +-
 .../commons/partition/DataPartitionQueryParam.java |   3 +-
 .../iotdb/commons/partition/SchemaPartition.java   |  46 +-
 .../apache/iotdb/commons/service/ServiceType.java  |   3 +-
 .../iotdb/commons/service/ThriftService.java       |   8 +-
 .../resources/conf/iotdb-engine.properties         |  35 +-
 .../apache/iotdb/db/client/ConfigNodeClient.java   |   2 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  13 +-
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |   4 +
 .../apache/iotdb/db/engine/StorageEngineV2.java    |   9 +-
 .../iotdb/db/mpp/buffer/DataBlockManager.java      |   2 +-
 .../iotdb/db/mpp/buffer/DataBlockService.java      |  29 +-
 .../buffer/DataBlockServiceMBean.java}             |   4 +-
 .../org/apache/iotdb/db/mpp/buffer/SinkHandle.java |  14 +-
 .../apache/iotdb/db/mpp/buffer/SourceHandle.java   |   2 +
 .../iotdb/db/mpp/common/MPPQueryContext.java       |  10 +-
 .../iotdb/db/mpp/common/header/DatasetHeader.java  |  13 +-
 .../apache/iotdb/db/mpp/execution/Coordinator.java |  27 +-
 .../apache/iotdb/db/mpp/execution/DataDriver.java  |   1 +
 .../iotdb/db/mpp/execution/IQueryExecution.java    |  13 +
 .../iotdb/db/mpp/execution/QueryExecution.java     |  68 +-
 .../iotdb/db/mpp/execution/SchemaDriver.java       |   3 +-
 .../db/mpp/execution/config/ConfigExecution.java   |  48 +-
 .../scheduler/InternalServiceClientFactory.java    |  16 +-
 .../scheduler/SimpleFragInstanceDispatcher.java    |  17 +-
 .../db/mpp/schedule/FragmentInstanceScheduler.java |   2 +
 .../apache/iotdb/db/mpp/sql/analyze/Analyzer.java  |  71 +-
 .../mpp/sql/analyze/ClusterPartitionFetcher.java   |   7 +-
 .../db/mpp/sql/analyze/ClusterSchemaFetcher.java   |  12 +-
 .../db/mpp/sql/planner/DistributionPlanner.java    |  18 +-
 .../db/mpp/sql/planner/LocalExecutionPlanner.java  |   5 +-
 .../db/mpp/sql/planner/plan/node/PlanNodeType.java |   6 +-
 .../plan/node/metedata/read/SchemaFetchNode.java   |   4 +-
 .../plan/node/metedata/read/SchemaMergeNode.java   |  11 +-
 .../node/metedata/write/CreateTimeSeriesNode.java  |  29 +-
 .../planner/plan/node/process/ExchangeNode.java    |   6 +
 .../planner/plan/node/process/TimeJoinNode.java    |   9 +-
 .../planner/plan/node/sink/FragmentSinkNode.java   |   6 +
 .../sql/planner/plan/node/write/InsertRowNode.java |  32 +-
 .../apache/iotdb/db/service/InternalService.java   |  55 +-
 .../iotdb/db/service/InternalServiceImpl.java      |   2 +-
 ...ataNodeMBean.java => InternalServiceMBean.java} |   3 +-
 .../InternalServiceThriftHandler.java}             |   4 +-
 .../java/org/apache/iotdb/db/service/IoTDB.java    |  29 +-
 .../org/apache/iotdb/db/service/RPCService.java    |  12 +-
 .../thrift/handler/RPCServiceThriftHandler.java    |  10 +-
 .../thrift/impl/DataNodeTSIServiceImpl.java        | 733 +++++++++++++++++++++
 .../db/service/thrift/impl/TSIEventHandler.java    |  10 +-
 .../db/service/thrift/impl/TSServiceImpl.java      | 367 +----------
 .../db/sync/receiver/manager/ReceiverManager.java  |   9 +-
 .../apache/iotdb/db/utils/QueryDataSetUtils.java   |  19 +-
 .../db/mpp/sql/plan/DistributionPlannerTest.java   |  19 +-
 .../iotdb/db/mpp/sql/plan/QueryPlannerTest.java    |   4 +-
 58 files changed, 1385 insertions(+), 600 deletions(-)
 copy server/src/main/java/org/apache/iotdb/db/{service/RPCServiceMBean.java => mpp/buffer/DataBlockServiceMBean.java} (92%)
 copy server/src/main/java/org/apache/iotdb/db/service/{DataNodeMBean.java => InternalServiceMBean.java} (95%)
 copy server/src/main/java/org/apache/iotdb/db/{mpp/buffer/DataBlockServiceThriftHandler.java => service/InternalServiceThriftHandler.java} (92%)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/service/thrift/impl/DataNodeTSIServiceImpl.java
 copy cluster/src/test/java/org/apache/iotdb/cluster/common/TestException.java => server/src/main/java/org/apache/iotdb/db/service/thrift/impl/TSIEventHandler.java (80%)