haibow commented on a change in pull request #4954: Support schema evolution
for consuming segments
URL: https://github.com/apache/incubator-pinot/pull/4954#discussion_r363562951
##########
File path:
pinot-core/src/main/java/org/apache/pinot/core/query/pruner/SegmentPrunerService.java
##########
@@ -52,7 +52,7 @@ public SegmentPrunerService(SegmentPrunerConfig config) {
public boolean prune(IndexSegment segment, ServerQueryRequest queryRequest) {
for (SegmentPruner segmentPruner : _segmentPruners) {
if (segmentPruner.prune(segment, queryRequest)) {
- LOGGER.debug("Pruned segment: {}", segment.getSegmentName());
+ LOGGER.debug("{} pruned segment: {}",
segmentPruner.getClass().getName(), segment.getSegmentName());
Review comment:
I'm trying to log the class name for each SegmentPruner class being called,
not the main SegmentPrunerService class
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]