Start the rollout engines without blocking the caller - #1888
Open
fzyzcjy wants to merge 1 commit into
Open
Conversation
Contributor
|
Caution The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased. |
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-1
branch
from
July 28, 2026 13:31
f9b8fd0 to
e1a85ce
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-4
branch
2 times, most recently
from
August 3, 2026 23:45
29763ac to
c9e3b7e
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-1
branch
from
August 4, 2026 00:39
2c49d90 to
fd39325
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-4
branch
from
August 4, 2026 00:39
c9e3b7e to
2817005
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-1
branch
from
August 4, 2026 06:58
fd39325 to
b1169c7
Compare
fzyzcjy
requested review from
Rockdu,
Shi-Dong,
Zhichenzzz,
guapisolo,
jybsuper and
yushengsu-thu
as code owners
August 4, 2026 06:58
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-4
branch
2 times, most recently
from
August 6, 2026 07:03
f374cec to
9ccc542
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-1
branch
from
August 6, 2026 07:03
b1169c7 to
0802de3
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-4
branch
from
August 9, 2026 23:33
9ccc542 to
eb4c695
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-1
branch
from
August 10, 2026 06:08
0802de3 to
d013498
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-4
branch
from
August 10, 2026 06:08
eb4c695 to
55de553
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-1
branch
from
August 10, 2026 16:07
d013498 to
b9370a6
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-4
branch
2 times, most recently
from
August 10, 2026 16:34
3480f66 to
45a6586
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-1
branch
2 times, most recently
from
August 12, 2026 02:48
0957c83 to
a6eac6e
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-4
branch
from
August 12, 2026 02:48
45a6586 to
2ec48ab
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-1
branch
from
August 12, 2026 14:31
a6eac6e to
ac9ec83
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-4
branch
from
August 12, 2026 14:31
2ec48ab to
60d4ae2
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-4
branch
from
August 12, 2026 23:56
60d4ae2 to
6bb2627
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-1
branch
from
August 13, 2026 01:13
0dbfbae to
e4239e6
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-4
branch
from
August 13, 2026 01:13
6bb2627 to
69f5f78
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-1
branch
from
August 13, 2026 03:25
e4239e6 to
93d272d
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-4
branch
2 times, most recently
from
August 13, 2026 06:01
1afdee7 to
9f666a9
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-1
branch
from
August 13, 2026 06:01
93d272d to
7f90422
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-4
branch
from
August 14, 2026 04:46
9f666a9 to
8d505ca
Compare
Collaborator
|
Non-blocking: #1889 made the node probes concurrent, but dynamic port allocation still calls blocking |
start_rollout_servers ran each model's startup through async_utils.run, so the orchestrator process sat on a nested event loop and the models started one after another. It becomes a coroutine that gathers every model's cells at once, and InferenceController -- which can no longer do that work in __init__ -- gains an async create() factory. Concurrent models share one PortAllocator: two allocators probing the same node independently could hand out the same free port before either engine binds it.
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-1
branch
from
August 29, 2026 12:40
67e42b2 to
469c083
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op7-4
branch
from
August 29, 2026 12:40
8d505ca to
114691b
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.
Part of #1837