You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ca...@apache.org on 2022/11/24 12:29:55 UTC

[iotdb] branch beyyes/fix_remove_node_problem_1123 updated (822f4f1c2f -> 4387752b37)

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

caogaofei pushed a change to branch beyyes/fix_remove_node_problem_1123
in repository https://gitbox.apache.org/repos/asf/iotdb.git


    from 822f4f1c2f perfect the migrate process
     add a92b895eea [IOTDB-4830] Fixed some bugs when removing an unknown node (#8068)
     add 24de040d1f Fix tsfile split tool doc and move Status-Codes to Reference (#8124)
     add 3b2bd8198d Fix typo in user guide (#8127)
     add d9227e79fb [IOTDB-5033] Fix deadlock in memory pool (#8123)
     add a04c7023c7 Catch Throwable in DataNodeInternalService to avoid ambiguous TException (#8126)
     add ce92432c8c Remove start-new-server scripts (#8128)
     add 4da2f1bf4f [IOTDB-4556] Optimize log of failing to flush sync index (#8090)
     add 3103c12a00 [IOTDB-5006]Add a load-tsfile script  (#8120)
     add ac3b408da8 [IOTDB-5010] DataRegion StateMachine support for Ratis Snapshot (#8110)
     add fbca630b0a Add dispatch node endpoint msg to error log (#8132)
     add 4387752b37 Merge branch 'master' into beyyes/fix_remove_node_problem_1123

No new revisions were added by this update.

Summary of changes:
 .../{sbin/start-cli.bat => tools/load-tsfile.bat}  |  62 +++--
 .../{sbin/start-cli.sh => tools/load-tsfile.sh}    |  87 ++++---
 .../client/sync/SyncDataNodeClientPool.java        |  14 +-
 .../procedure/env/ConfigNodeProcedureEnv.java      |  36 ++-
 .../procedure/env/DataNodeRemoveHandler.java       |  28 ++-
 .../impl/node/RemoveDataNodeProcedure.java         |   2 +-
 consensus/pom.xml                                  |   9 +-
 .../org/apache/iotdb/consensus/IStateMachine.java  |  13 +-
 .../multileader/logdispatcher/IndexController.java |   7 +-
 .../ratis/ApplicationStateMachineProxy.java        |   3 +-
 .../iotdb/consensus/ratis/SnapshotStorage.java     |  31 ++-
 .../Load-Tsfile.md}                                |  41 +++-
 .../Maintenance-Tools/Rewrite-TsFile-Tool.md       |  62 -----
 .../Maintenance-Tools/TsFile-Split-Tool.md         |  25 +--
 docs/UserGuide/{API => Reference}/Status-Codes.md  |   0
 docs/UserGuide/Write-Data/Batch-Load-Tool.md       |   2 +-
 .../Load-Tsfile.md}                                |  41 +++-
 .../Maintenance-Tools/Rewrite-TsFile-Tool.md       |  62 -----
 .../Maintenance-Tools/TsFile-Split-Tool.md         |  20 +-
 docs/zh/UserGuide/Query-Data/Overview.md           |   9 +-
 .../UserGuide/{API => Reference}/Status-Codes.md   |   0
 docs/zh/UserGuide/Write-Data/Batch-Load-Tool.md    |   2 +-
 .../apache/iotdb/commons/client/ClientManager.java |   2 +-
 .../assembly/resources/sbin/start-new-server.bat   | 167 --------------
 .../assembly/resources/sbin/start-new-server.sh    | 249 ---------------------
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  12 +
 .../statemachine/DataRegionStateMachine.java       |  15 +-
 .../iotdb/db/engine/snapshot/SnapshotTaker.java    |  17 +-
 .../execution/executor/RegionWriteExecutor.java    |  17 +-
 .../iotdb/db/mpp/execution/memory/MemoryPool.java  |  84 ++++---
 .../scheduler/FragmentInstanceDispatcherImpl.java  |   5 +-
 .../java/org/apache/iotdb/db/service/DataNode.java |   2 +-
 .../impl/DataNodeInternalRPCServiceImpl.java       |   2 +-
 .../java/org/apache/iotdb/rpc/TSStatusCode.java    |   4 +-
 site/src/main/.vuepress/config.js                  |  14 +-
 35 files changed, 392 insertions(+), 754 deletions(-)
 copy cli/src/assembly/resources/{sbin/start-cli.bat => tools/load-tsfile.bat} (65%)
 copy cli/src/assembly/resources/{sbin/start-cli.sh => tools/load-tsfile.sh} (63%)
 mode change 100755 => 100644
 rename docs/UserGuide/{Write-Data/Load-External-Tsfile.md => Maintenance-Tools/Load-Tsfile.md} (66%)
 delete mode 100644 docs/UserGuide/Maintenance-Tools/Rewrite-TsFile-Tool.md
 rename docs/UserGuide/{API => Reference}/Status-Codes.md (100%)
 rename docs/zh/UserGuide/{Write-Data/Load-External-Tsfile.md => Maintenance-Tools/Load-Tsfile.md} (68%)
 delete mode 100644 docs/zh/UserGuide/Maintenance-Tools/Rewrite-TsFile-Tool.md
 rename docs/zh/UserGuide/{API => Reference}/Status-Codes.md (100%)
 delete mode 100644 server/src/assembly/resources/sbin/start-new-server.bat
 delete mode 100644 server/src/assembly/resources/sbin/start-new-server.sh