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

[cleanup] Cleanup some duplicated code #23204

Merged
merged 3 commits into from
Aug 20, 2024
Merged

Conversation

zymap
Copy link
Member

@zymap zymap commented Aug 20, 2024


Motivation

Move the implementation to one place and avoid duplicated implementation

Fixes #xyz

Main Issue: #xyz

PIP: #xyz

Motivation

Modifications

Verifying this change

  • Make sure that the change passes the CI checks.

(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:)

  • Added integration tests for end-to-end deployment with large payloads (10MB)
  • Extended integration test for recovery after broker failure

Does this pull request potentially affect one of the following parts:

If the box was checked, please highlight the changes

  • Dependencies (add or upgrade a dependency)
  • The public API
  • The schema
  • The default values of configurations
  • The threading model
  • The binary protocol
  • The REST endpoints
  • The admin CLI options
  • The metrics
  • Anything that affects deployment

Documentation

  • doc
  • doc-required
  • doc-not-needed
  • doc-complete

Matching PR in forked repository

PR in forked repository:

---

### Motivation

Move the implementation to one place and avoid duplicated implementation
@zymap zymap self-assigned this Aug 20, 2024
@github-actions github-actions bot added the doc-not-needed Your PR changes do not impact docs label Aug 20, 2024
@zymap zymap added type/cleanup Code or doc cleanups e.g. remove the outdated documentation or remove the code no longer in use and removed doc-not-needed Your PR changes do not impact docs labels Aug 20, 2024
@zymap zymap added this to the 4.0.0 milestone Aug 20, 2024
@github-actions github-actions bot added the doc-not-needed Your PR changes do not impact docs label Aug 20, 2024
Copy link
Contributor

@hangc0276 hangc0276 left a 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-commenter
Copy link

codecov-commenter commented Aug 20, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 74.53%. Comparing base (bbc6224) to head (b0372e4).
Report is 537 commits behind head on master.

Additional details and impacted files

Impacted file tree graph

@@             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     
Flag Coverage Δ
inttests 27.71% <75.00%> (+3.13%) ⬆️
systests 24.70% <50.00%> (+0.37%) ⬆️
unittests 73.88% <100.00%> (+1.04%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files Coverage Δ
...che/bookkeeper/mledger/impl/ManagedLedgerImpl.java 81.83% <100.00%> (+1.17%) ⬆️
...sar/broker/service/persistent/PersistentTopic.java 79.33% <100.00%> (+0.87%) ⬆️

... and 528 files with indirect coverage changes

@merlimat merlimat merged commit a605ea3 into apache:master Aug 20, 2024
51 checks passed
grssam pushed a commit to grssam/pulsar that referenced this pull request Sep 4, 2024
currentLedgerTimeoutTriggered);
internalAsyncAddEntry(addOperation);
});
asyncAddEntry(buffer, 1, callback, ctx);
Copy link
Member

@shibd shibd Jan 6, 2025

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.

Copy link
Member

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.

hanmz pushed a commit to hanmz/pulsar that referenced this pull request Feb 12, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/broker doc-not-needed Your PR changes do not impact docs ready-to-test type/cleanup Code or doc cleanups e.g. remove the outdated documentation or remove the code no longer in use
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants