This is an automated email from the ASF dual-hosted git repository.
tanxinyu pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
omit 8ee8eb654b1 Add Binary Allocator (#14201)
This update removed existing revisions from the reference, leaving the
reference pointing at a previous point in the repository history.
* -- * -- N refs/heads/master (502f54a5beb)
\
O -- O -- O (8ee8eb654b1)
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:
.../org/apache/iotdb/db/conf/IoTDBDescriptor.java | 21 --
.../conf/iotdb-system.properties.template | 34 ---
.../commons/binaryallocator/BinaryAllocator.java | 260 ---------------------
.../binaryallocator/BinaryAllocatorState.java | 71 ------
.../iotdb/commons/binaryallocator/arena/Arena.java | 233 ------------------
.../binaryallocator/arena/ArenaStrategy.java | 35 ---
.../binaryallocator/config/AllocatorConfig.java | 53 -----
.../ema/AdaptiveWeightedAverage.java | 100 --------
.../commons/binaryallocator/evictor/Evictor.java | 96 --------
.../metric/BinaryAllocatorMetrics.java | 104 ---------
.../commons/binaryallocator/utils/SizeClasses.java | 146 ------------
.../iotdb/commons/concurrent/ThreadName.java | 1 -
.../apache/iotdb/commons/conf/CommonConfig.java | 50 ----
.../iotdb/commons/conf/CommonDescriptor.java | 25 --
.../service/metric/JvmGcMonitorMetrics.java | 6 -
.../iotdb/commons/service/metric/enums/Metric.java | 1 -
.../binaryallocator/BinaryAllocatorTest.java | 139 -----------
17 files changed, 1375 deletions(-)
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/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/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