-
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
[feat][broker][PIP-195] Add metrics for bucket delayed message tracker #19716
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
9874e3c
Add metrics for bucket delayed message
coderzc 6ccb8b9
Add _count and _sum for op latency
coderzc 48639f6
use refresh instead of collect
coderzc 17631e1
Remove containsMessage from DelayedDeliveryTracker
coderzc 9e548d7
Fix code
coderzc a776d18
Rebase master
coderzc 067cc2c
Improve code
coderzc 8b8ec82
fix code
coderzc f10b352
improve code
coderzc 4dd3acc
fix test
coderzc 64967e8
fix code
coderzc 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,25 +67,21 @@ public CompletableFuture<Long> createBucketSnapshot(SnapshotMetadata snapshotMet | |
@Override | ||
public CompletableFuture<SnapshotMetadata> getBucketSnapshotMetadata(long bucketId) { | ||
return openLedger(bucketId).thenCompose( | ||
ledgerHandle -> getLedgerEntryThenCloseLedger(ledgerHandle, 0, 0). | ||
ledgerHandle -> getLedgerEntry(ledgerHandle, 0, 0). | ||
thenApply(entryEnumeration -> parseSnapshotMetadataEntry(entryEnumeration.nextElement()))); | ||
} | ||
|
||
@Override | ||
public CompletableFuture<List<SnapshotSegment>> getBucketSnapshotSegment(long bucketId, long firstSegmentEntryId, | ||
long lastSegmentEntryId) { | ||
return openLedger(bucketId).thenCompose( | ||
ledgerHandle -> getLedgerEntryThenCloseLedger(ledgerHandle, firstSegmentEntryId, | ||
ledgerHandle -> getLedgerEntry(ledgerHandle, firstSegmentEntryId, | ||
lastSegmentEntryId).thenApply(this::parseSnapshotSegmentEntries)); | ||
} | ||
|
||
@Override | ||
public CompletableFuture<Long> getBucketSnapshotLength(long bucketId) { | ||
return openLedger(bucketId).thenApply(ledgerHandle -> { | ||
long length = ledgerHandle.getLength(); | ||
closeLedger(ledgerHandle); | ||
return length; | ||
}); | ||
return openLedger(bucketId).thenApply(LedgerHandle::getLength); | ||
} | ||
|
||
@Override | ||
|
@@ -212,8 +208,8 @@ private CompletableFuture<Void> addEntry(LedgerHandle ledgerHandle, byte[] data) | |
}); | ||
} | ||
|
||
CompletableFuture<Enumeration<LedgerEntry>> getLedgerEntryThenCloseLedger(LedgerHandle ledger, | ||
long firstEntryId, long lastEntryId) { | ||
CompletableFuture<Enumeration<LedgerEntry>> getLedgerEntry(LedgerHandle ledger, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ledger is already closed after |
||
long firstEntryId, long lastEntryId) { | ||
final CompletableFuture<Enumeration<LedgerEntry>> future = new CompletableFuture<>(); | ||
ledger.asyncReadEntries(firstEntryId, lastEntryId, | ||
(rc, handle, entries, ctx) -> { | ||
|
@@ -222,7 +218,6 @@ CompletableFuture<Enumeration<LedgerEntry>> getLedgerEntryThenCloseLedger(Ledger | |
} else { | ||
future.complete(entries); | ||
} | ||
closeLedger(handle); | ||
}, null | ||
); | ||
return future; | ||
|
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.
Why did we remove this method in this PR?
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.
Oh, sorry this addresses a previous comment.
See: #17677 (review)
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.
Thanks for the context!