[improve][meta] Fix invalid use of drain API and race condition in closing metadata store#22585
Merged
merlimat merged 2 commits intoapache:masterfrom Jun 14, 2024
Merged
Conversation
Member
Author
|
It seems that the OOME is another issue. #22586 |
merlimat
reviewed
Apr 26, 2024
...ata/src/main/java/org/apache/pulsar/metadata/impl/batching/AbstractBatchedMetadataStore.java
Show resolved
Hide resolved
...ata/src/main/java/org/apache/pulsar/metadata/impl/batching/AbstractBatchedMetadataStore.java
Show resolved
Hide resolved
merlimat
approved these changes
May 1, 2024
Technoboy-
approved these changes
May 8, 2024
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #22585 +/- ##
============================================
- Coverage 73.57% 71.02% -2.55%
+ Complexity 32624 5630 -26994
============================================
Files 1877 1891 +14
Lines 139502 152144 +12642
Branches 15299 18133 +2834
============================================
+ Hits 102638 108061 +5423
- Misses 28908 35445 +6537
- Partials 7956 8638 +682
Flags with carried forward coverage won't be shown. Click here to find out more.
|
hanmz
pushed a commit
to hanmz/pulsar
that referenced
this pull request
Feb 12, 2025
…osing metadata store (apache#22585) Co-authored-by: Matteo Merli <mmerli@apache.org>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Motivation
There's currently some memory leaks in tests and while investigating the issue, I found out that there's a large number of uncompleted CompletableFutures in the heap dump.
Currently the metadata store doesn't complete all pending operations when it is closed.
There are multiple problems:
Modifications
Additional Context
CompletableFutures in the heap dump:
The instances are related to

org.apache.pulsar.broker.resources.NamespaceResources$PartitionedTopicResources$$Lambda$1819+0x00007f08a8b65ee8:org.apache.pulsar.broker.resources.NamespaceResources$PartitionedTopicResources$$Lambda$1819+0x00007f08a8b65ee8seems to be this code block:pulsar/pulsar-broker-common/src/main/java/org/apache/pulsar/broker/resources/NamespaceResources.java
Lines 345 to 374 in bbdc173
Documentation
docdoc-requireddoc-not-neededdoc-complete