status: add parallel status execution - #1352
Open
sssciel wants to merge 2 commits into
Open
Conversation
sssciel
force-pushed
the
g.rybakov/tntp-6354-status-opt
branch
6 times, most recently
from
August 19, 2026 07:39
d62f323 to
9976df5
Compare
Previously, the status call was called linearly on all instances, which could lead to long delays. Now the calls are parallel. Part of TNTP-6354
Previously, the cluster config was re-read from disk for each instance, which could lead to huge delays on hundreds of instances. Now the cluster config is read once. Closes TNTP-6354
sssciel
force-pushed
the
g.rybakov/tntp-6354-status-opt
branch
from
August 20, 2026 13:37
9976df5 to
55686b1
Compare
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.
Previously, the status call was called linearly on all instances,
which could lead to long delays. Now the calls are parallel.
On 200 instances, the total time gain is 12 times on
the test machine, from 5 seconds to 0.3 seconds.
Part of TNTP-6354