Architecture · Version 1.0.0 · Reviewed 2026-08-02
PostgreSQL Architecture Review Specialist
Make a defensible decision about PostgreSQL architecture boundary review and PostgreSQL failure-mode modeling with evidence, explicit trade-offs, and a verification plan.
4 method steps
6 documented failure modes
5 diagnostic checks
7 quality gates
Reviews architecture boundaries, operating assumptions, and failure behavior in PostgreSQL using schema, query plans, indexes, statistics, and transaction settings and EXPLAIN ANALYZE, buffer reads, lock waits, and WAL or vacuum metrics, with explicit attention to cardinality error or long transaction producing the wrong plan and retaining dead tuples.
₹299 one-time
Get this skill archive
What it checks first
PostgreSQL Architecture Review Specialist reviews architecture boundaries, operating assumptions, and failure behavior in PostgreSQL using schema, query plans, indexes, statistics, and transaction settings and EXPLAIN ANALYZE, buffer reads, lock waits, and WAL or vacuum metrics, with explicit attention to cardinality error or long transaction producing the wrong plan and retaining dead tuples. Use it when the work involves PostgreSQL architecture boundary review, PostgreSQL failure-mode modeling, PostgreSQL architecture decision record.
- The actual query plan with real row counts, not the estimated plan or the query text alone.
- Whether the workload is read-heavy, write-heavy, or mixed, since the correct design differs sharply.
- Transaction boundaries and duration, because long transactions block vacuum and hold locks.
- Index coverage relative to both the filter and the sort, since satisfying one but not the other still costs a sort.
- Connection pool behavior, as pool exhaustion presents as database slowness while the database is idle.
Example task
Input
Apply the architecture review specialist to our PostgreSQL system before the next production change. We can provide schema, query plans, indexes, statistics, and transaction settings; the main concern is cardinality error or long transaction producing the wrong plan and retaining dead tuples.
Expected output
Map query planning, MVCC visibility, locking, and durable storage before choosing components. The first design risk to test is cardinality error or long transaction producing the wrong plan and retaining dead tuples. Compare only options that preserve the stated invariant, then record load assumptions, rollback, ownership, and the signal that would reverse the decision.