This is an automated email from the ASF dual-hosted git repository.
nehapawar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new c85ff1d Arguments in logging statement are in the wrong order (#7939)
c85ff1d is described below
commit c85ff1d334e2bf3cf7973178660de2d85211d05b
Author: Mark Needham <[email protected]>
AuthorDate: Tue Jan 11 19:33:03 2022 +0000
Arguments in logging statement are in the wrong order (#7939)
---
.../core/data/manager/realtime/LLRealtimeSegmentDataManager.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/pinot-core/src/main/java/org/apache/pinot/core/data/manager/realtime/LLRealtimeSegmentDataManager.java
b/pinot-core/src/main/java/org/apache/pinot/core/data/manager/realtime/LLRealtimeSegmentDataManager.java
index 7f78b4d..434a7b4 100644
---
a/pinot-core/src/main/java/org/apache/pinot/core/data/manager/realtime/LLRealtimeSegmentDataManager.java
+++
b/pinot-core/src/main/java/org/apache/pinot/core/data/manager/realtime/LLRealtimeSegmentDataManager.java
@@ -310,12 +310,12 @@ public class LLRealtimeSegmentDataManager extends
RealtimeSegmentDataManager {
return true;
} else if (_numRowsIndexed >= _segmentMaxRowCount) {
_segmentLogger.info("Stopping consumption due to row limit nRows={}
numRowsIndexed={}, numRowsConsumed={}",
- _numRowsIndexed, _numRowsConsumed, _segmentMaxRowCount);
+ _segmentMaxRowCount, _numRowsIndexed, _numRowsConsumed);
_stopReason = SegmentCompletionProtocol.REASON_ROW_LIMIT;
return true;
} else if (_endOfPartitionGroup) {
_segmentLogger.info("Stopping consumption due to end of
partitionGroup reached nRows={} numRowsIndexed={}, "
- + "numRowsConsumed={}", _numRowsIndexed, _numRowsConsumed,
_segmentMaxRowCount);
+ + "numRowsConsumed={}", _segmentMaxRowCount, _numRowsIndexed,
_numRowsConsumed);
_stopReason =
SegmentCompletionProtocol.REASON_END_OF_PARTITION_GROUP;
return true;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]