HDDS-14645. Speed up TestBlockDeletingService#10378
Merged
Merged
Conversation
SaketaChalamchala
approved these changes
May 29, 2026
Contributor
SaketaChalamchala
left a comment
There was a problem hiding this comment.
Thanks for the patch @adoroszlai. LGTM
jojochuang
reviewed
May 30, 2026
| LOG.info("Shutting down service {}", this.serviceName); | ||
| exec.shutdown(); | ||
| final ScheduledThreadPoolExecutor current; | ||
| synchronized (this) { |
Contributor
There was a problem hiding this comment.
is it necessary to synchronize here and assign current = exec? I mean the reference is essentially immutable after initialization.
Contributor
Author
There was a problem hiding this comment.
Spotbugs may complain about inconsistent synchronization. That's why shutdown was changed to synchronized in HDDS-13320 (#8677 (comment), 57f39f9).
Contributor
Author
|
Thanks @jojochuang, @SaketaChalamchala for the review. |
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.
What changes were proposed in this pull request?
PeriodicalTaskruns inBackgroundService's executor, and wants to lockBackgroundServicebefore spawning background tasks.BackgroundService.shutdownshould notawaitTerminationof the executor while holding the same lock: if shutdown is initiated while the task is before the critical section, the task cannot complete, causingawaitTerminationto timeout after 1 minute.https://issues.apache.org/jira/browse/HDDS-14645
How was this patch tested?
Before:
After:
https://github.com/adoroszlai/ozone/actions/runs/26556849091