Skip to content

Conversation

@poorbarcode
Copy link
Contributor

@poorbarcode poorbarcode commented Aug 16, 2025

Motivation

#23795 improved the method recentlyJoinedConsumers: rather than check ordering for all items, just check the latest two because the method will be called after addition for all consumers.

The method sortRecentlyJoinedConsumersIfNeeded has a bug; it did an unnecessary sorting for the collection recentlyJoinedConsumers, and printed noisy logs The items in recentlyJoinedConsumers are out-of-order.

For example:

  • there are 3 items: [1, 2, 3]
  • the first loop: posPre -> 1
  • the second loop: posPre -> null; posAfter -> 2
  • the latest loop: posPre -> 3; Since the variable posPre is null , skip to set the variable posAfter
        // Record the second latest item.
        Position posPre = null;
        // Record the latest item.
        Position posAfter = null;
        for (Map.Entry<Consumer, Position> entry : recentlyJoinedConsumers.entrySet()) {
            if (posPre == null) {
                posPre = entry.getValue();
            } else {
                posPre = posAfter; // Issue: the variable "posPre" will be set to "null" at the second loop
                posAfter = entry.getValue();
            }
        }

Modifications

Fix the issue.

Documentation

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

Matching PR in forked repository

PR in forked repository: x

@poorbarcode poorbarcode self-assigned this Aug 16, 2025
@poorbarcode poorbarcode added the type/bug The PR fixed a bug or issue reported a bug label Aug 16, 2025
@poorbarcode poorbarcode added this to the 4.1.0 milestone Aug 16, 2025
@github-actions github-actions bot added the doc-not-needed Your PR changes do not impact docs label Aug 16, 2025
@codecov-commenter
Copy link

codecov-commenter commented Aug 29, 2025

Codecov Report

❌ Patch coverage is 93.33333% with 1 line in your changes missing coverage. Please review.
✅ Project coverage is 74.10%. Comparing base (277835a) to head (b89537b).
⚠️ Report is 221 commits behind head on master.

Files with missing lines Patch % Lines
...ntStickyKeyDispatcherMultipleConsumersClassic.java 93.33% 0 Missing and 1 partial ⚠️
Additional details and impacted files

Impacted file tree graph

@@             Coverage Diff              @@
##             master   #24634      +/-   ##
============================================
- Coverage     74.38%   74.10%   -0.28%     
- Complexity    32808    33351     +543     
============================================
  Files          1881     1893      +12     
  Lines        146843   147781     +938     
  Branches      16866    17091     +225     
============================================
+ Hits         109222   109520     +298     
- Misses        28964    29500     +536     
- Partials       8657     8761     +104     
Flag Coverage Δ
inttests 26.64% <0.00%> (-0.15%) ⬇️
systests 22.66% <0.00%> (-0.68%) ⬇️
unittests 73.59% <93.33%> (-0.27%) ⬇️

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

Files with missing lines Coverage Δ
...ntStickyKeyDispatcherMultipleConsumersClassic.java 87.15% <93.33%> (-1.15%) ⬇️

... and 167 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@coderzc coderzc modified the milestones: 4.1.0, 4.2.0 Sep 1, 2025
@Technoboy- Technoboy- merged commit a2b69cc into apache:master Sep 9, 2025
76 of 81 checks passed
Technoboy- pushed a commit that referenced this pull request Sep 10, 2025
@lhotari
Copy link
Member

lhotari commented Sep 11, 2025

@poorbarcode please backport to branch-3.0 and branch-3.3

manas-ctds pushed a commit to datastax/pulsar that referenced this pull request Sep 12, 2025
…ers and printed noisy error logs (apache#24634)

(cherry picked from commit c2940b3)
nborisov pushed a commit to nborisov/pulsar that referenced this pull request Sep 12, 2025
srinath-ctds pushed a commit to datastax/pulsar that referenced this pull request Sep 12, 2025
…ers and printed noisy error logs (apache#24634)

(cherry picked from commit c2940b3)
lhotari pushed a commit that referenced this pull request Sep 16, 2025
@lhotari
Copy link
Member

lhotari commented Sep 16, 2025

@poorbarcode please backport to branch-3.0 and branch-3.3

I've handled backporting to branch-3.0 in commit b505a0f

nodece pushed a commit to ascentstream/pulsar that referenced this pull request Sep 16, 2025
Technoboy- pushed a commit that referenced this pull request Sep 18, 2025
manas-ctds pushed a commit to datastax/pulsar that referenced this pull request Sep 19, 2025
srinath-ctds pushed a commit to datastax/pulsar that referenced this pull request Sep 19, 2025
KannarFr pushed a commit to CleverCloud/pulsar that referenced this pull request Sep 22, 2025
walkinggo pushed a commit to walkinggo/pulsar that referenced this pull request Oct 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants