rayforce: wait for the old server to exit before restarting; client timeouts cover a long query - #2244
Merged
alexey-milovidov merged 4 commits intoSep 27, 2026
Conversation
ser-vasilich
had a problem deploying
to
benchmark-approval
September 26, 2026 09:28 — with
GitHub Actions
Error
…longer client timeouts After `./stop` the server keeps its listening socket while it unmaps the table, and its command line is already cleared, so an immediate `./start` could neither bind the port nor see the process and failed with "Address already in use". Both scripts now wait until the process and the port are gone. The client timeouts (2 s in check.rfl, 60 s in query.rfl) were shorter than a long query: the server answers one request at a time, so during the concurrent phase a waiting client, or the watchdog's probe, timed out and the server was restarted while busy. They now cover the 600 s window. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
ser-vasilich
force-pushed
the
rayforce-harness-restart
branch
from
September 26, 2026 09:42
2a865af to
98d7670
Compare
ser-vasilich
had a problem deploying
to
benchmark-approval
September 26, 2026 09:42 — with
GitHub Actions
Error
alexey-milovidov
deployed
to
benchmark-approval
September 26, 2026 20:37 — with
GitHub Actions
Active
alexey-milovidov
approved these changes
Sep 26, 2026
Contributor
|
The run of Logs:
|
Contributor
|
Results for Logs:
|
robot-clickhouse
had a problem deploying
to
benchmark-approval
September 26, 2026 22:20 — with
GitHub Actions
Error
Contributor
|
Results for Logs:
|
robot-clickhouse
had a problem deploying
to
benchmark-approval
September 26, 2026 22:42 — with
GitHub Actions
Error
Contributor
|
Results for Logs:
|
robot-clickhouse
requested a deployment
to
benchmark-approval
September 26, 2026 23:19 — with
GitHub Actions
Waiting
Contributor
|
The run of Logs:
|
This branch is waiting to be deployed
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.
Harness scripts only; no results.
stop / start. After
./stopthe rayforce server keeps its listening socket open while it unmaps the table, and its command line is already cleared. An immediate./starttherefore neither found the process nor could bind the port and failed withAddress already in use; the try was recorded as null. Both scripts now wait until the process and the port are gone.check.rfl / query.rfl. The server answers one IPC request at a time. With a 2 s handshake timeout the watchdog's probe saw a busy server as dead during the concurrent phase and restarted it mid-query; with a 60 s connect timeout a client waiting behind a long query gave up. Both timeouts now cover the 600 s concurrent window.