-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[pulsar-broker] Broker extensions to allow operators of enterprise wide cluster better control and flexibility #12536
Merged
codelipenghui
merged 18 commits into
apache:master
from
madhavan-narayanan:broker_extensions
Dec 14, 2021
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
ffea4f7
Broker extensions to allow cluster operators more flexibility and con…
madhavan-narayanan db58618
Broker extensions to allow cluster operators more flexibility and con…
madhavan-narayanan 1c255de
To support a list of interceptors for payload processing. LinkedHashS…
madhavan-narayanan 654394e
Fixes to address review comments
madhavan-narayanan 5338fee
Client configuration change not needed
madhavan-narayanan 4bce0d2
Broker extensions to allow cluster operators more flexibility and con…
madhavan-narayanan e8f93e0
Broker extensions to allow cluster operators more flexibility and con…
madhavan-narayanan fa63498
To support a list of interceptors for payload processing. LinkedHashS…
madhavan-narayanan 0000094
Fixes to address review comments
madhavan-narayanan 69edd06
Client configuration change not needed
madhavan-narayanan b3a7ec6
resolved conflicts
madhavan-narayanan 10e6ea3
Fixes for review comments
madhavan-narayanan f42542c
Fixes for review comments
madhavan-narayanan a3071e6
Fixes for review comments
madhavan-narayanan 5c7301d
Merge remote-tracking branch 'apache/master' into broker_extensions
codelipenghui 74ec4cc
Fixes build failure
madhavan-narayanan d368c05
Fixes for review comments
madhavan-narayanan 45f4a86
Merge remote-tracking branch 'apache/master' into broker_extensions
codelipenghui File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Could you please provide more context about why we should add
rateIn
as a param for this method?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 is currently used in our logs to indicate the overall publish rate for the topic seen by the broker when this message was stored in the ledger. Used to troubleshoot latency issues and to support customer queries. Is there anything wrong in exposing this parameter?
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 see, I think it's better to get the rateIn from the producer?
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 agree. It was an oversight. I used rateIn as it was readily computed and available in MessagePublishContext::run. I will fix it now
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.
Fix done