-
Notifications
You must be signed in to change notification settings - Fork 1
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
Conversation
Test Results15 files ±0 15 suites ±0 30s ⏱️ ±0s 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.
♻️ 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(); |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this.name = "kafka-live-event-listener-" + consumerName + "-" + System.currentTimeMillis(); | |
this.name = "kafka-live-event-listener-" + consumerName + "-" + String.valueOf(System.currentTimeMillis()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No description provided.