feat: hashserv with PostgreSQL backend, health check, Cloud Map - #229
Open
rpcme wants to merge 1 commit into
Open
feat: hashserv with PostgreSQL backend, health check, Cloud Map#229rpcme wants to merge 1 commit into
rpcme wants to merge 1 commit into
Conversation
Replace SQLite-on-EFS hashserv with PostgreSQL (RDS) backend: - bitbake-hashserv + asyncpg + sqlalchemy for concurrent-safe writes - Health check HTTP server on port 8687 (event-driven, verifies hashserv) - ECS container health check using the HTTP endpoint - Cloud Map DNS discovery (hashserv-<release>.internal:8686) - 2 Fargate tasks per release for availability - Per-release database isolation on shared RDS instance Validated: - 50 concurrent clients, 0 errors, 225 ops/sec - Real CI builds passing with zero hashserv timeouts - P99 read latency: 105ms Infrastructure (CDK): - RDS PostgreSQL 16.14 (db.t4g.small) - 4 ECS services x 2 tasks (master, scarthgap, whinlatter, wrynose) - Cloud Map private DNS namespace - Lambda custom resource for database creation (db-init-lambda/) Deploy: AWS_PROFILE=elci npx cdk deploy --require-approval=never
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.
Replaces SQLite-on-EFS hashserv with PostgreSQL (RDS) backend. Validated at 50 concurrent clients with 0 errors. Running in production since Aug 3. See commit message for full details.