Skip to content

feat: infrastructure hardening — WS subscriber refactor, DB pooling, HNSW indexes - #1

Merged
CodeNinjaSarthak merged 1 commit into
feat/frontend-improvementsfrom
feat/backend-improvement
Mar 9, 2026
Merged

feat: infrastructure hardening — WS subscriber refactor, DB pooling, HNSW indexes#1
CodeNinjaSarthak merged 1 commit into
feat/frontend-improvementsfrom
feat/backend-improvement

Conversation

@CodeNinjaSarthak

Copy link
Copy Markdown
Owner
  • Refactor Redis pub/sub relay into WebSocketManager.start_subscriber() with exponential backoff (1→30s) and auto-reconnect on failure
    • Fix Redis channel prefix: ws:session:{id} → ws:{id} (manager + posting worker)
    • Add publish() helper on WebSocketManager for future use
    • Tune DB connection pool per worker: pool_size=2, max_overflow=3 (budget: 45 total)
    • Add Alembic migration c3d4e5f6a7b8: HNSW indexes on comments and rag_documents embeddings
    • Add scripts/truncate_embeddings.sql utility to clear embeddings before re-indexing
    • Set postgres max_connections=100 in docker-compose
    • Switch Redis maxmemory-policy from allkeys-lru to volatile-lru (preserve non-expiring keys)
    • Run uvicorn with --workers 2 in api.Dockerfile
    • Remove legacy vanilla-JS frontend files (replaced by React/Vite)

…HNSW indexes
- Refactor Redis pub/sub relay into WebSocketManager.start_subscriber()
with exponential backoff (1→30s) and auto-reconnect on failure
- Fix Redis channel prefix: ws:session:{id} → ws:{id} (manager + posting worker)
- Add publish() helper on WebSocketManager for future use
- Tune DB connection pool per worker: pool_size=2, max_overflow=3 (budget: 45 total)
- Add Alembic migration c3d4e5f6a7b8: HNSW indexes on comments and rag_documents embeddings
- Add scripts/truncate_embeddings.sql utility to clear embeddings before re-indexing
- Set postgres max_connections=100 in docker-compose
- Switch Redis maxmemory-policy from allkeys-lru to volatile-lru (preserve non-expiring keys)
- Run uvicorn with --workers 2 in api.Dockerfile
- Remove legacy vanilla-JS frontend files (replaced by React/Vite)
@CodeNinjaSarthak
CodeNinjaSarthak merged commit 881b8c4 into feat/frontend-improvementsMar 9, 2026
@CodeNinjaSarthak
CodeNinjaSarthak deleted the feat/backend-improvement branch March 9, 2026 15:46
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@CodeNinjaSarthak