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

bensonchou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 0bf7d75ea46 Set compaction selector log from info to debug (#10207)
0bf7d75ea46 is described below

commit 0bf7d75ea4617c0c4a59f53bf9337828cde810ee
Author: 周沛辰 <[email protected]>
AuthorDate: Mon Jun 19 18:10:26 2023 +0800

    Set compaction selector log from info to debug (#10207)
---
 .../selector/impl/RewriteCrossSpaceCompactionSelector.java          | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/server/src/main/java/org/apache/iotdb/db/engine/compaction/selector/impl/RewriteCrossSpaceCompactionSelector.java
 
b/server/src/main/java/org/apache/iotdb/db/engine/compaction/selector/impl/RewriteCrossSpaceCompactionSelector.java
index 60b1deecb07..5bd5bd90c84 100644
--- 
a/server/src/main/java/org/apache/iotdb/db/engine/compaction/selector/impl/RewriteCrossSpaceCompactionSelector.java
+++ 
b/server/src/main/java/org/apache/iotdb/db/engine/compaction/selector/impl/RewriteCrossSpaceCompactionSelector.java
@@ -156,7 +156,7 @@ public class RewriteCrossSpaceCompactionSelector implements 
ICrossSpaceSelector
           split.seqFiles.stream().map(c -> 
c.resource).collect(Collectors.toList());
 
       if (!split.hasOverlap) {
-        LOGGER.info("Unseq file {} does not overlap with any seq files.", 
unseqFile);
+        LOGGER.debug("Unseq file {} does not overlap with any seq files.", 
unseqFile);
         TsFileResourceCandidate latestSealedSeqFile =
             getLatestSealedSeqFile(candidate.getSeqFileCandidates());
         if (latestSealedSeqFile == null) {
@@ -193,8 +193,8 @@ public class RewriteCrossSpaceCompactionSelector implements 
ICrossSpaceSelector
         // We must select the latest sealed and valid seq file to compact 
with, in order to avoid
         // overlapping of the new compacted files with the subsequent seq 
files.
         if (seqResourceCandidate.isValidCandidate) {
-          LOGGER.info(
-              "Select one valid seq file {} for unseq file to compact with.",
+          LOGGER.debug(
+              "Select one valid seq file {} for nonOverlap unseq file to 
compact with.",
               seqResourceCandidate.resource);
           return seqResourceCandidate;
         }

Reply via email to