Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

name single threads of kafka live event listener #97

Merged
merged 2 commits into from
Apr 24, 2024
Merged

Conversation

kishansairam9
Copy link

No description provided.

@kishansairam9 kishansairam9 requested a review from a team as a code owner April 24, 2024 09:54
Copy link

github-actions bot commented Apr 24, 2024

Test Results

15 files  ±0  15 suites  ±0   30s ⏱️ ±0s
66 tests ±0  66 ✅ ±0  0 💤 ±0  0 ❌ ±0 
84 runs  ±0  84 ✅ ±0  0 💤 ±0  0 ❌ ±0 

Results for commit 0d5b2b0. ± Comparison against base commit f555a3e.

This pull request removes 2 and adds 2 tests. Note that renamed tests count towards both.
org.hypertrace.core.kafkastreams.framework.rocksdb.BoundedMemoryConfigSetterTest ‑ [1] {rocksdb.compaction.style=UNIVERSAL, rocksdb.periodic.compaction.seconds=60, application.id=app-2, rocksdb.compaction.universal.max.size.amplification.percent=50, rocksdb.compaction.universal.compression.size.percent=40}
org.hypertrace.core.kafkastreams.framework.rocksdb.BoundedMemoryConfigSetterTest ‑ [5] {rocksdb.cache.high.priority.pool.ratio=0.2, application.id=app-5, rocksdb.cache.write.buffers.ratio=0.9}
org.hypertrace.core.kafkastreams.framework.rocksdb.BoundedMemoryConfigSetterTest ‑ [1] {application.id=app-2, rocksdb.compaction.universal.max.size.amplification.percent=50, rocksdb.compaction.universal.compression.size.percent=40, rocksdb.compaction.style=UNIVERSAL, rocksdb.periodic.compaction.seconds=60}
org.hypertrace.core.kafkastreams.framework.rocksdb.BoundedMemoryConfigSetterTest ‑ [5] {application.id=app-5, rocksdb.cache.write.buffers.ratio=0.9, rocksdb.cache.high.priority.pool.ratio=0.2}

♻️ This comment has been updated with latest results.

@@ -101,7 +101,7 @@ class ListenerThreadFactory implements ThreadFactory {
private final String name;

public ListenerThreadFactory(String consumerName) {
this.name = "kafka-live-event-listener-" + consumerName;
this.name = "kafka-live-event-listener-" + consumerName + "-" + System.currentTimeMillis();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it common pattern to add time in name?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added here intentionally to detect if we have multiple threads for same consumer name

Copy link
Author

@kishansairam9 kishansairam9 Apr 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideally for one topic there should be only one live event listener hence one thread only. But if it is wrongly used (calling build again and again instead of only once) there might be more than one, which we want to detect and fix

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If there are 8 StreamThread, there will be 8 Consumers.

If, its more than that, who is caller? How would we fix this? I think, is this called by our application code or by kafka framework itself?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If there are 8 StreamThread, there will be 8 Consumers.

No even if there are 8 stream threads we only want one consumer per topic - singleton instance

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If, its more than that, who is caller? How would we fix this? I think, is this called by our application code or by kafka framework itself?

This is used by application code, mainly to listen to change events. If we see more than one thread for a consumer name that means we are rebuilding live event listener under some condition, which is wrong. To fix, you might need to organise the building of live event listener to the place where code is exactly once executed - guice singleton or build topology and pass it down appropriately

private final String name;

public ListenerThreadFactory(String consumerName) {
this.name = "kafka-live-event-listener-" + consumerName + "-" + System.currentTimeMillis();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
this.name = "kafka-live-event-listener-" + consumerName + "-" + System.currentTimeMillis();
this.name = "kafka-live-event-listener-" + consumerName + "-" + String.valueOf(System.currentTimeMillis());

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image it is not needed

@kishansairam9 kishansairam9 merged commit 08d4406 into main Apr 24, 2024
5 checks passed
@kishansairam9 kishansairam9 deleted the name-threads branch April 24, 2024 10:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants