[improve][broker] Don't use forkjoin pool by default for deleting partitioned topics #22598
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
While investigating some recent test failures and Pulsar CI OOME issues, #22588, the heap dumps revealed that
the ForkJoin pool's work queue is retaining a lot of CompletableFuture related instances.
The heap dump confirms that these are originating from
NamespaceResources.PartitionedTopicResources#runWithMarkDeleteAsync
method in this location:pulsar/pulsar-broker-common/src/main/java/org/apache/pulsar/broker/resources/NamespaceResources.java
Lines 345 to 374 in bbdc173
The assumption is that graceful shutdown in tests without causing memory leaks will be more achievable with the provided executor since the instance isn't shared like the Fork join common pool executor.
Modifications
Instead of using the forkjoin pool by default in
NamespaceResources.PartitionedTopicResources#runWithMarkDeleteAsync
, use a specific executor. For Pulsar broker, this would be the executor returned byPulsarService#getExecutor()
Documentation
doc
doc-required
doc-not-needed
doc-complete