This is an automated email from the ASF dual-hosted git repository.
jiangtian pushed a change to branch force_ci/support_schema_evolution
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from 12bcb3a06cb support ReadPointCompactionPerformer with sevo
new d3d21df26e4 bump tsfile version
new 498f392d47a support sevo in ReadChunkCompactionPerformer
new ce18f8d5c54 Support sevo in FastCompactionPerformer and cross
compaction
The 3 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:
.../execution/operator/source/SeriesScanUtil.java | 4 +-
.../performer/impl/FastCompactionPerformer.java | 23 +-
.../impl/ReadChunkCompactionPerformer.java | 13 +-
.../subtask/FastCompactionPerformerSubTask.java | 21 +-
.../execute/utils/MultiTsFileDeviceIterator.java | 58 +-
.../utils/ReorderedTsFileDeviceIterator.java | 1 -
...BatchedFastAlignedSeriesCompactionExecutor.java | 24 +-
.../fast/FastAlignedSeriesCompactionExecutor.java | 30 +-
.../FastNonAlignedSeriesCompactionExecutor.java | 6 +-
.../executor/fast/SeriesCompactionExecutor.java | 11 +-
.../ReadChunkAlignedSeriesCompactionExecutor.java | 4 +-
.../writer/AbstractCrossCompactionWriter.java | 20 +-
.../compaction/io/CompactionTsFileWriter.java | 18 +-
.../dataregion/read/QueryDataSource.java | 4 +-
.../read/control/QueryResourceManager.java | 7 +-
.../dataregion/tsfile/TsFileResource.java | 37 +-
.../dataregion/tsfile/evolution/EvolvedSchema.java | 11 +
.../compaction/CompactionWithSevoTest.java | 674 +++++++++++++++++++++
.../FastInnerCompactionPerformerTest.java | 21 +
.../compaction/ReadChunkInnerCompactionTest.java | 23 +
pom.xml | 2 +-
21 files changed, 941 insertions(+), 71 deletions(-)
create mode 100644
iotdb-core/datanode/src/test/java/org/apache/iotdb/db/storageengine/dataregion/compaction/CompactionWithSevoTest.java