File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
kafka-event-listener/src/main/java/org/hypertrace/core/kafka/event/listener Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 1818 * topic are consumed by this listener as every time we create a listener we consume from latest
1919 * offsets by design.
2020 *
21+ * <p>Operational Caveat: The listener subscribes to active partitions only, in case the partition
22+ * count changes once the listener is active, it will be opaque to those new partitions and will not
23+ * consume them. Only a new listener will go and fetch all active partitions hence it will be
24+ * required to restart the consumer application.
25+ *
2126 * <p>Typical usage of this listener is to back the remote caches to have lower latency of refresh
22- * by generating respective information on kafka topics
27+ * by generating respective information on kafka topics.
2328 */
2429public class KafkaLiveEventListener <K , V > implements AutoCloseable {
2530 private final Future <Void > kafkaLiveEventListenerCallableFuture ;
You can’t perform that action at this time.
0 commit comments