state: pass state db handles through consumers#20561
Open
euroelessar wants to merge 6 commits intomainfrom
Open
state: pass state db handles through consumers#20561euroelessar wants to merge 6 commits intomainfrom
euroelessar wants to merge 6 commits intomainfrom
Conversation
e4a3f2d to
e541ebe
Compare
Contributor
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 830b771d06
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
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.
Why
SQLite state was still being opened from consumer paths, including lazy
OnceCell-backed thread-store call sites. That let one process construct multiple state DB connections for the same Codex home, which makes SQLite lock contention anddatabase is lockedfailures much easier to hit.State DB lifetime should be chosen by main-like entrypoints and tests, then passed through explicitly. Consumers should use the supplied
Option<StateDbHandle>orStateDbHandleand keep their existing filesystem fallback or error behavior when no handle is available.What Changed
Option<StateDbHandle>throughThreadManager,LocalThreadStore, app-server processors, TUI app wiring, rollout listing/recording, personality migration, shell snapshot cleanup, session-name lookup, and memory/device-key consumers._with_state_dbvariants.getConversationSummary(ThreadId)to delegate throughThreadStore::read_threadinstead of a LocalThreadStore-specific rollout path special case.debug prompt-inputfilesystem-only so a one-off debug command does not initialize or backfill SQLite state just to print prompt input.Nonewhere filesystem-only behavior is intended.Validation
CARGO_TARGET_DIR=/tmp/codex-target-state-db cargo check -p codex-rollout -p codex-thread-store -p codex-app-server -p codex-core -p codex-tui -p codex-exec -p codex-cli --testsCARGO_TARGET_DIR=/tmp/codex-target-state-db cargo test -p codex-rollout session_indexCARGO_TARGET_DIR=/tmp/codex-target-state-db cargo test -p codex-rollout find_thread_pathCARGO_TARGET_DIR=/tmp/codex-target-state-db cargo test -p codex-rollout list_threadsCARGO_TARGET_DIR=/tmp/codex-target-state-db cargo test -p codex-thread-storeCARGO_TARGET_DIR=/tmp/codex-target-state-db cargo test -p codex-core shell_snapshotCARGO_TARGET_DIR=/tmp/codex-target-state-db cargo test -p codex-core --test all personality_migrationCARGO_TARGET_DIR=/tmp/codex-target-state-db cargo test -p codex-core --test all rollout_list_findCARGO_TARGET_DIR=/tmp/codex-target-state-db cargo test -p codex-core interrupt_accounts_active_goal_before_pausingCARGO_TARGET_DIR=/tmp/codex-target-state-db cargo test -p codex-app-server get_auth_status -- --test-threads=1CARGO_TARGET_DIR=/tmp/codex-target-state-db just fix -p codex-rollout -p codex-thread-store -p codex-core -p codex-app-server -p codex-tui -p codex-exec -p codex-clijust argument-comment-lint -p codex-corecargo test -p codex-app-server thread_list_respects_search_term_filter -- --test-threads=1 --nocapturewas attempted locally but timed out waiting for the app-server test harnessinitializeresponse before reaching the changed thread-list code path.