-
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
[cleanup] Cleanup some duplicated code #23204
Conversation
--- ### Motivation Move the implementation to one place and avoid duplicated implementation
pulsar-broker/src/main/java/org/apache/pulsar/broker/service/persistent/PersistentTopic.java
Show resolved
Hide resolved
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.
Look like the numberOfMessages only impact the interceptor. To minimal the changes in the code, we do not touch the new interfaces in transaction.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #23204 +/- ##
============================================
+ Coverage 73.57% 74.53% +0.95%
- Complexity 32624 34170 +1546
============================================
Files 1877 1917 +40
Lines 139502 144609 +5107
Branches 15299 15811 +512
============================================
+ Hits 102638 107778 +5140
+ Misses 28908 28584 -324
- Partials 7956 8247 +291
Flags with carried forward coverage won't be shown. Click here to find out more.
|
currentLedgerTimeoutTriggered); | ||
internalAsyncAddEntry(addOperation); | ||
}); | ||
asyncAddEntry(buffer, 1, callback, ctx); |
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.
Can we use 0 to keep original behaviour?
If this is set to 1, then the content originally written via this interface will go through the broker metadata interceptor
.
For example, commitTxn
or abortTxn
, which will cause the index maintained in AppendIndexMetadataInterceptor
to increment incorrectly
.
Maybe the implicit behavior of this method(asyncAddEntry(ByteBuf buffer, AddEntryCallback callback, Object ctx)
) is that calling this interface does not tuch the broker metadata interceptor
.
Then, modifying the append of a normal transaction message should call the interface that passes in numberOfMessage.
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.
@shibd Please report an issue to track this. It seems that there are untested and undocumented behaviors in the original implementation that aren't tested if this change was possible.
Motivation
Move the implementation to one place and avoid duplicated implementation
Fixes #xyz
Main Issue: #xyz
PIP: #xyz
Motivation
Modifications
Verifying this change
(Please pick either of the following options)
This change is a trivial rework / code cleanup without any test coverage.
(or)
This change is already covered by existing tests, such as (please describe tests).
(or)
This change added tests and can be verified as follows:
(example:)
Does this pull request potentially affect one of the following parts:
If the box was checked, please highlight the changes
Documentation
doc
doc-required
doc-not-needed
doc-complete
Matching PR in forked repository
PR in forked repository: