feat(websockets): implement WebSockets V3 with granular Redis Pub/Sub
- Introduced WS_Message_V3 standardized Pydantic model and WS_Manager_V3. - Implemented /v3/ws/ endpoint with granular Redis routing to solve "noisy neighbor" scaling issues. - Added presence tracking using Redis Sets for group coordination. - Comprehensive test suite added (unit and integration) covering models, manager, and routing logic. - Documentation: Created V3 Frontend WebSocket Guide and Project design spec. - Updated main Frontend API guide and tests README with new standards.
This commit is contained in:
@@ -10,7 +10,7 @@ from app.routers import (
|
||||
flask_cfg, hosted_file, api_v3_actions_hosted_file, lookup,
|
||||
organization, page, person,
|
||||
person_user, qr, site, site_domain, user,
|
||||
util_email, websockets, websockets_redis, e_confex, e_cvent, e_impexium, e_stripe
|
||||
util_email, websockets, websockets_redis, websockets_v3, e_confex, e_cvent, e_impexium, e_stripe
|
||||
)
|
||||
|
||||
def setup_routers(app: FastAPI):
|
||||
@@ -62,6 +62,7 @@ def setup_routers(app: FastAPI):
|
||||
app.include_router(util_email.router, tags=['Utility: Email'])
|
||||
app.include_router(websockets.router, tags=['Websockets'])
|
||||
app.include_router(websockets_redis.router, tags=['Websockets (Redis)'])
|
||||
app.include_router(websockets_v3.router, prefix='/v3', tags=['Websockets V3'])
|
||||
|
||||
app.include_router(e_confex.router, prefix='/e/confex', tags=['External Service: Confex'])
|
||||
app.include_router(e_cvent.router, prefix='/e/cvent', tags=['External Service: Cvent'])
|
||||
|
||||
109
app/routers/websockets_v3.py
Normal file
109
app/routers/websockets_v3.py
Normal file
@@ -0,0 +1,109 @@
|
||||
import asyncio
|
||||
import json
|
||||
import logging
|
||||
from typing import Optional
|
||||
|
||||
from fastapi import APIRouter, WebSocket, WebSocketDisconnect, Depends
|
||||
from pydantic import ValidationError
|
||||
|
||||
from app.lib_general_v3 import get_account_context_optional
|
||||
from app.lib_websockets_v3 import WS_Message_V3, ws_manager_v3
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
@router.websocket('/ws/group/{group_id}/client/{client_id}')
|
||||
async def v3_ws_endpoint(
|
||||
websocket: WebSocket,
|
||||
group_id: str,
|
||||
client_id: str,
|
||||
):
|
||||
"""
|
||||
Main V3 WebSocket Endpoint.
|
||||
Uses granular Redis Pub/Sub for efficient message routing.
|
||||
"""
|
||||
await websocket.accept()
|
||||
log.info(f"WS V3: Client {client_id} connected to group {group_id}")
|
||||
|
||||
# 1. Presence & Subscription Setup
|
||||
await ws_manager_v3.update_presence(client_id, group_id, online=True)
|
||||
|
||||
redis_conn = await ws_manager_v3.get_redis()
|
||||
pubsub = redis_conn.pubsub()
|
||||
|
||||
channels = ws_manager_v3.get_channel_names(client_id, group_id)
|
||||
await pubsub.subscribe(*channels)
|
||||
|
||||
# --- Handlers ---
|
||||
|
||||
async def receiver_handler():
|
||||
"""Handles incoming messages from the client."""
|
||||
try:
|
||||
while True:
|
||||
data = await websocket.receive_json()
|
||||
|
||||
try:
|
||||
# Enforce standardized schema
|
||||
# Force from_id and group_id from path for security
|
||||
data['from_id'] = client_id
|
||||
data['group_id'] = group_id
|
||||
|
||||
message = WS_Message_V3(**data)
|
||||
await ws_manager_v3.publish_message(message)
|
||||
|
||||
except ValidationError as ve:
|
||||
log.warning(f"WS V3: Validation error from {client_id}: {ve.json()}")
|
||||
await websocket.send_json({
|
||||
"error": "Invalid message schema",
|
||||
"details": ve.errors(),
|
||||
"version": "3"
|
||||
})
|
||||
|
||||
except WebSocketDisconnect:
|
||||
log.info(f"WS V3: Client {client_id} disconnected (receiver)")
|
||||
raise
|
||||
except Exception as e:
|
||||
log.exception(f"WS V3: Unexpected error in receiver for {client_id}")
|
||||
|
||||
async def sender_handler():
|
||||
"""Handles outgoing messages from Redis to the client."""
|
||||
try:
|
||||
while True:
|
||||
# Use a small timeout to allow for clean task cancellation
|
||||
message = await pubsub.get_message(ignore_subscribe_messages=True, timeout=0.1)
|
||||
|
||||
if message and message['type'] == 'message':
|
||||
# Forward the structured message directly
|
||||
# Redis stores them as JSON strings
|
||||
await websocket.send_text(message['data'])
|
||||
|
||||
except Exception as e:
|
||||
log.exception(f"WS V3: Unexpected error in sender for {client_id}")
|
||||
|
||||
# --- Execution Loop ---
|
||||
|
||||
try:
|
||||
# Run both loops concurrently. If either fails or client disconnects, clean up.
|
||||
# asyncio.wait with FIRST_COMPLETED ensures we don't leave orphan tasks.
|
||||
done, pending = await asyncio.wait(
|
||||
[
|
||||
asyncio.create_task(receiver_handler()),
|
||||
asyncio.create_task(sender_handler()),
|
||||
],
|
||||
return_when=asyncio.FIRST_COMPLETED,
|
||||
)
|
||||
|
||||
# Cancel remaining task (usually the sender if the receiver caught a disconnect)
|
||||
for task in pending:
|
||||
task.cancel()
|
||||
|
||||
except Exception as e:
|
||||
log.error(f"WS V3: Loop error for {client_id}: {e}")
|
||||
|
||||
finally:
|
||||
# 2. Cleanup
|
||||
log.info(f"WS V3: Cleaning up connection for {client_id}")
|
||||
await ws_manager_v3.update_presence(client_id, group_id, online=False)
|
||||
await pubsub.unsubscribe(*channels)
|
||||
await pubsub.close()
|
||||
Reference in New Issue
Block a user