This is an automated email from the ASF dual-hosted git repository. rong pushed a commit to branch fix-pipe-stuck-by-file in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 2fe7d84156fc3826a5081367d8cdb755fa1cadf5 Author: Steve Yurong Su <[email protected]> AuthorDate: Thu Mar 13 12:35:55 2025 +0800 Fix log --- .../org/apache/iotdb/db/pipe/resource/tsfile/PipeTsFileResource.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/resource/tsfile/PipeTsFileResource.java b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/resource/tsfile/PipeTsFileResource.java index fec0c837138..2cb3a59c399 100644 --- a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/resource/tsfile/PipeTsFileResource.java +++ b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/resource/tsfile/PipeTsFileResource.java @@ -207,7 +207,7 @@ public class PipeTsFileResource implements AutoCloseable { MEMORY_SUFFICIENT_THRESHOLD); if (allocatedMemoryBlock == null) { LOGGER.info( - "PipeTsFileResource: Failed to create TsFileSequenceReader for tsfile {} in cache, because memory usage is high", + "Failed to cacheDeviceIsAlignedMapIfAbsent for tsfile {}, because memory usage is high", hardlinkOrCopiedFile.getPath()); return false; } @@ -271,7 +271,7 @@ public class PipeTsFileResource implements AutoCloseable { MEMORY_SUFFICIENT_THRESHOLD); if (allocatedMemoryBlock == null) { LOGGER.info( - "PipeTsFileResource: Failed to create TsFileSequenceReader for tsfile {} in cache, because memory usage is high", + "Failed to cacheObjectsIfAbsent for tsfile {}, because memory usage is high", hardlinkOrCopiedFile.getPath()); return false; }
