This is an automated email from the ASF dual-hosted git repository.
xingtanzjr pushed a change to branch geely_1.0.1
in repository https://gitbox.apache.org/repos/asf/iotdb.git
discard 1e59f59b5b [IOTDB-5338] WAL buffer flush threshold optimaztion (#8832)
discard 625ea5da01 [IOTDB-5401] Reduce the estimated size of memory retained
after calling next in SeriesAggregationScanOperator
discard 0c13eca957 add error log when target partition list is emtpy
add 573097af3f [To rc/1.0.1] [IOTDB-5266] Refine the code of cross
selector and fix the bug when using FileTImeIndex (#8899)
new 7169d47fe6 add error log when target partition list is emtpy
new 2c8391bda9 [IOTDB-5401] Reduce the estimated size of memory retained
after calling next in SeriesAggregationScanOperator
new a5efa3fa01 [IOTDB-5338] WAL buffer flush threshold optimaztion (#8832)
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 (1e59f59b5b)
\
N -- N -- N refs/heads/geely_1.0.1 (a5efa3fa01)
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.
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:
.../db/engine/compaction/CompactionScheduler.java | 8 +-
.../compaction/cross/ICrossSpaceSelector.java | 4 +-
.../cross/rewrite/CrossCompactionTaskResource.java | 119 +++
.../rewrite/CrossSpaceCompactionCandidate.java | 259 ++++++
.../rewrite/CrossSpaceCompactionResource.java | 74 --
.../RewriteCrossSpaceCompactionSelector.java | 340 ++------
.../compaction/task/ICompactionSelector.java | 4 +-
.../db/engine/storagegroup/TsFileResource.java | 19 +
.../storagegroup/timeindex/DeviceTimeIndex.java | 4 +
.../apache/iotdb/db/exception/MergeException.java | 2 +-
.../CrossSpaceCompactionWithFastPerformerTest.java | 21 +-
...eCompactionWithFastPerformerValidationTest.java | 937 +++++++++++----------
...sSpaceCompactionWithReadPointPerformerTest.java | 21 +-
...actionWithReadPointPerformerValidationTest.java | 906 ++++++++++----------
.../engine/compaction/cross/MergeUpgradeTest.java | 4 +-
.../cross/RewriteCompactionFileSelectorTest.java | 121 +--
16 files changed, 1508 insertions(+), 1335 deletions(-)
create mode 100644
server/src/main/java/org/apache/iotdb/db/engine/compaction/cross/rewrite/CrossCompactionTaskResource.java
create mode 100644
server/src/main/java/org/apache/iotdb/db/engine/compaction/cross/rewrite/CrossSpaceCompactionCandidate.java
delete mode 100644
server/src/main/java/org/apache/iotdb/db/engine/compaction/cross/rewrite/CrossSpaceCompactionResource.java