Use PostgreSQL unlogged tables + LISTEN/NOTIFY for multi-worker support#2
Open
Use PostgreSQL unlogged tables + LISTEN/NOTIFY for multi-worker support#2
Conversation
Moves the three in-memory state systems (rate limiter, presence, gateway event fan-out) that previously forced --workers 1 into shared PostgreSQL unlogged tables with cross-worker notification via LISTEN/NOTIFY. Key changes: - New src/vox/db/shared_state.py: creates unlogged _rate_buckets, _presence, and _connections tables; runs a background LISTEN loop for cross-worker event dispatch; falls back to in-memory dicts on SQLite for dev compatibility. - Rate limiter: check() is now async, delegates to shared_state for atomic token-bucket operations in PostgreSQL. - Gateway hub: local connections dict stays (WebSockets are process- local), but broadcast() publishes via NOTIFY so other workers deliver events to their own clients. Presence reads/writes go through shared tables. - Snowflake IDs: layout changed to 42-bit ts | 10-bit worker | 12-bit seq so each worker generates collision-free IDs. - Deployment docs updated: --workers 4 default when on PostgreSQL. https://claude.ai/code/session_0113vE6YvpWbp1zCdABBH1r7
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.
Moves the three in-memory state systems (rate limiter, presence, gateway event fan-out) that previously forced --workers 1 into shared PostgreSQL unlogged tables with cross-worker notification via LISTEN/NOTIFY.
Key changes:
https://claude.ai/code/session_0113vE6YvpWbp1zCdABBH1r7