Github user HeartSaVioR commented on a diff in the pull request:
https://github.com/apache/storm/pull/1902#discussion_r98591458
--- Diff:
external/storm-kafka-client/src/main/java/org/apache/storm/kafka/spout/trident/KafkaTridentSpoutEmitter.java
---
@@ -161,31 +187,84 @@ private long seek(TopicPartition tp,
KafkaTridentSpoutBatchMetadata<K, V> lastBa
return fetchOffset;
}
- // returns paused topic partitions
+ // returns paused topic partitions.
private Collection<TopicPartition> pauseTopicPartitions(TopicPartition
excludedTp) {
- final Set<TopicPartition> pausedTopicPartitions = new
HashSet<>(kafkaConsumer.assignment());
- LOG.debug("Currently assigned topic partitions [{}]",
pausedTopicPartitions);
+ final Set<TopicPartition> pausedTopicPartitions = new
HashSet<>(kafkaConsumer.assignment());
+ LOG.trace("Currently assigned topic partitions [{}]",
pausedTopicPartitions);
--- End diff --
Do we need to change this to trace?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---