This is an automated email from the ASF dual-hosted git repository.
jt2594838 pushed a change to branch remove_swtich_type
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from f91f38f1380 update tsfile version
add f763ad427cf Pipe: Load TsFile classes from parent class loader (#18578)
add 448a805c7b6 Revert IoTConsensus batch accumulation changes (#18598)
add 25ab7941ceb Limit Edge query threads and remove unused binary
allocator (#18587)
add 0b6c4eb8b66 Merge branch 'master' into remove_swtich_type
No new revisions were added by this update.
Summary of changes:
.../org/apache/iotdb/edge/it/IoTDBEdgeBasicIT.java | 124 ++++++++
.../apache/iotdb/consensus/iot/IoTConsensus.java | 5 +-
.../consensus/iot/IoTConsensusServerImpl.java | 3 +-
.../iotdb/consensus/iot/logdispatcher/Batch.java | 6 +-
.../logdispatcher/IoTConsensusMemoryManager.java | 6 +-
.../consensus/iot/logdispatcher/LogDispatcher.java | 59 +---
.../consensus/iot/logdispatcher/SyncStatus.java | 7 +-
.../IoTConsensusMemoryManagerTest.java | 22 --
.../iot/logdispatcher/LogDispatcherTest.java | 354 ---------------------
.../java/org/apache/iotdb/db/conf/IoTDBConfig.java | 30 ++
.../org/apache/iotdb/db/conf/IoTDBDescriptor.java | 26 +-
.../execution/schedule/DriverTaskThread.java | 35 +-
.../iotdb/db/queryengine/plan/Coordinator.java | 5 +-
.../iotdb/db/conf/QueryThreadPoolConfigTest.java | 29 ++
.../execution/schedule/DriverTaskThreadTest.java | 120 +++++++
.../resources/conf/edge/iotdb-system.properties | 2 +
.../conf/iotdb-system.properties.template | 49 +--
.../apache/iotdb/commons/i18n/CommonMessages.java | 14 +-
.../apache/iotdb/commons/i18n/CommonMessages.java | 15 +-
.../commons/binaryallocator/BinaryAllocator.java | 311 ------------------
.../binaryallocator/BinaryAllocatorState.java | 71 -----
.../PooledBinaryPhantomReference.java | 42 ---
.../iotdb/commons/binaryallocator/arena/Arena.java | 273 ----------------
.../binaryallocator/arena/ArenaStrategy.java | 35 --
.../binaryallocator/autoreleaser/Releaser.java | 93 ------
.../binaryallocator/config/AllocatorConfig.java | 53 ---
.../ema/AdaptiveWeightedAverage.java | 100 ------
.../commons/binaryallocator/evictor/Evictor.java | 102 ------
.../metric/BinaryAllocatorMetrics.java | 138 --------
.../commons/binaryallocator/utils/SizeClasses.java | 146 ---------
.../iotdb/commons/concurrent/ThreadName.java | 2 -
.../apache/iotdb/commons/conf/CommonConfig.java | 50 ---
.../iotdb/commons/conf/CommonDescriptor.java | 25 --
.../plugin/service/PipePluginClassLoader.java | 8 +-
.../service/metric/JvmGcMonitorMetrics.java | 4 -
.../iotdb/commons/service/metric/enums/Metric.java | 1 -
.../binaryallocator/BinaryAllocatorTest.java | 171 ----------
.../plugin/service/PipePluginClassLoaderTest.java | 35 ++
38 files changed, 422 insertions(+), 2149 deletions(-)
delete mode 100644
iotdb-core/consensus/src/test/java/org/apache/iotdb/consensus/iot/logdispatcher/LogDispatcherTest.java
create mode 100644
iotdb-core/datanode/src/test/java/org/apache/iotdb/db/queryengine/execution/schedule/DriverTaskThreadTest.java
delete mode 100644
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/BinaryAllocator.java
delete mode 100644
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/BinaryAllocatorState.java
delete mode 100644
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/PooledBinaryPhantomReference.java
delete mode 100644
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/arena/Arena.java
delete mode 100644
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/arena/ArenaStrategy.java
delete mode 100644
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/autoreleaser/Releaser.java
delete mode 100644
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/config/AllocatorConfig.java
delete mode 100644
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/ema/AdaptiveWeightedAverage.java
delete mode 100644
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/evictor/Evictor.java
delete mode 100644
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/metric/BinaryAllocatorMetrics.java
delete mode 100644
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/utils/SizeClasses.java
delete mode 100644
iotdb-core/node-commons/src/test/java/org/apache/iotdb/commons/binaryallocator/BinaryAllocatorTest.java