This is an automated email from the ASF dual-hosted git repository.
xingtanzjr pushed a commit to branch test_wal_sync
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/test_wal_sync by this push:
new 23ca99cde5 add more log for WAL wait
23ca99cde5 is described below
commit 23ca99cde562eaaee5f222c53e8da6b6d9bcc39f
Author: Jinrui.Zhang <[email protected]>
AuthorDate: Tue Jun 28 12:17:56 2022 +0800
add more log for WAL wait
---
server/src/main/java/org/apache/iotdb/db/wal/node/WALNode.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/server/src/main/java/org/apache/iotdb/db/wal/node/WALNode.java
b/server/src/main/java/org/apache/iotdb/db/wal/node/WALNode.java
index 8f207cee32..9c017f3a0f 100644
--- a/server/src/main/java/org/apache/iotdb/db/wal/node/WALNode.java
+++ b/server/src/main/java/org/apache/iotdb/db/wal/node/WALNode.java
@@ -780,6 +780,7 @@ public class WALNode implements IWALNode {
public void waitForNextReady() throws InterruptedException {
while (!hasNext()) {
buffer.waitForFlush();
+ logger.info("awake from waiting. nextSearchIndex: {}",
nextSearchIndex);
}
}