You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by at...@apache.org on 2021/11/23 16:22:42 UTC

[druid] branch master updated: Log correct hydrant count (#11976)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 311d9a2  Log correct hydrant count (#11976)
311d9a2 is described below

commit 311d9a2370884f97599805cfdcf87c66107d4d50
Author: Agustin Gonzalez <ag...@imply.io>
AuthorDate: Tue Nov 23 09:22:17 2021 -0700

    Log correct hydrant count (#11976)
---
 .../apache/druid/segment/realtime/appenderator/BatchAppenderator.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/server/src/main/java/org/apache/druid/segment/realtime/appenderator/BatchAppenderator.java b/server/src/main/java/org/apache/druid/segment/realtime/appenderator/BatchAppenderator.java
index 3912db5..7b91ac4 100644
--- a/server/src/main/java/org/apache/druid/segment/realtime/appenderator/BatchAppenderator.java
+++ b/server/src/main/java/org/apache/druid/segment/realtime/appenderator/BatchAppenderator.java
@@ -1148,9 +1148,9 @@ public class BatchAppenderator implements Appenderator
       sm.setPersistedFileDir(persistDir);
 
       log.info(
-          "About to persist in-memory data for segment[%s] spill[%s] to disk in [%,d] ms (%,d rows).",
+          "Persisted in-memory data for segment[%s] spill[%s] to disk in [%,d] ms (%,d rows).",
           indexToPersist.getSegmentId(),
-          indexToPersist.getCount(),
+          sm.getNumHydrants(),
           (System.nanoTime() - startTime) / 1000000,
           numRows
       );

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org