feat(database): enable Data API and connection logging#123
Merged
Conversation
Why: The Aurora Serverless v2 cluster lacks operational tooling for debugging and diagnostics. Without Data API, operators must use SSH tunneling via Bastion Host to run ad-hoc queries. Without connection logs, diagnosing unexpected auto-pause resumes or connection pool exhaustion requires guesswork. What: - Enable RDS Data API for direct SQL execution from AWS CLI/Console - Add log_connections and log_disconnections parameters - Export PostgreSQL logs to CloudWatch Logs with 1-week retention
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.
Issue
close #122
Problem
The Aurora Serverless v2 cluster lacks operational tooling for debugging and diagnostics:
Solution
Add three CDK-native properties to the existing
DatabaseClusterconstruct:enableDataApi: true— Enables the RDS Data API, allowing direct SQL execution from AWS CLI/Console without SSH tunneling.log_connections/log_disconnections— Standard PostgreSQL parameters that record connection open/close events in the PostgreSQL log.cloudwatchLogsExports: ["postgresql"]with 1-week retention — Exports PostgreSQL logs to CloudWatch Logs for centralized analysis (Aurora PostgreSQL CloudWatch Publishing).Changes
cdk/lib/constructs/database.ts:import * as logs from "aws-cdk-lib/aws-logs"enableDataApi: truetoDatabaseClustercloudwatchLogsExports: ["postgresql"]andcloudwatchLogsRetention: logs.RetentionDays.ONE_WEEKlog_connections: "1"andlog_disconnections: "1"to the existingParameterGroupVerification
npm run buildpasses incdk/aws rds-data execute-statementcan run SQL against the cluster/aws/rds/cluster/<cluster-name>/postgresqlis created