Skip to content

Commit 07e0136

Browse files
committed
Update PipeEventCommitter.java
1 parent 7599506 commit 07e0136

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/pipe/agent/task/progress/PipeEventCommitter.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,11 @@ public synchronized void commit(final EnrichedEvent event) {
8888
final EnrichedEvent e = commitQueue.peek();
8989

9090
if (e.getCommitId() <= lastCommitId.get()) {
91-
LOGGER.warn(
92-
"commit id must be monotonically increasing, current commit id: {}, last commit id: {}, event: {}, stack trace: {}",
91+
LOGGER.info(
92+
"commit id is not monotonically increasing, current commit id: {}, last commit id: {}, event: {}, may be because the tsFile has been compacted",
9393
e.getCommitId(),
9494
lastCommitId.get(),
95-
e.coreReportMessage(),
96-
Thread.currentThread().getStackTrace());
95+
e.coreReportMessage());
9796
commitQueue.poll();
9897
continue;
9998
}

0 commit comments

Comments
 (0)