Use CREATE INDEX CONCURRENTLY with a failure and cleanup plan
For CREATE INDEX CONCURRENTLY, the safest approach is a bounded operational change, not a command pasted without context. This runbook starts with effective state, shows the smallest candidate action, and finishes by repeating the real user or system path.
TL;DR: Concurrent index creation performs multiple table scans and waits for transactions so writes can continue, but it takes longer and can leave an invalid index after failure. Capture a baseline withSELECT version();, make the reviewed change only when the evidence matches, then verify withSELECT indexrelid::regclass,indisvalid,indisready FROM pg_index WHERE indrelid='orders'::regclass;and keep the rollback ready.
Audience: database operators who can run read-only SQL and distinguish a diagnostic session from application traffic. This guide assumes familiarity with PostgreSQL operations and a change window appropriate to the system.
The direct answer
The index becomes valid, expected plans can use it, and write latency plus replica lag stay inside budget. That is the success condition for CREATE INDEX CONCURRENTLY; command completion by itself is not enough.
The important boundary is client session, transaction, lock manager, planner, executor, storage, WAL, and replica state. Concurrent index creation performs multiple table scans and waits for transactions so writes can continue, but it takes longer and can leave an invalid index after failure. If an observation does not identify which side of that boundary failed, collect a narrower observation before changing state.
How the mechanism works
For CREATE INDEX CONCURRENTLY, use this mental model: PostgreSQL accepts work through sessions and transactions, plans against statistics, coordinates concurrency with locks and MVCC, and makes durable changes through data pages plus WAL. The model prevents a common mistake—treating configuration text, control-plane acceptance, process state, and end-user behavior as the same proof.
Follow four stages:
- Observe: identify the exact host, object, version, owner, and active configuration.
- Interpret: write the expected result, the abnormal result, and what would remain inconclusive.
- Change: apply one reviewed action at the narrowest layer that contradicts the baseline.
- Verify: repeat the original path and compare the same evidence, including adjacent safety controls.
Preflight and safety boundary
Use a dedicated diagnostic session with timeouts, capture the server version and active workload, and rehearse any blocking or destructive command on a representative copy.
Before CREATE INDEX CONCURRENTLY, record UTC time, the current version or digest, the exact target, recent changes, and who owns the workload. The rollback for this runbook is: DROP INDEX CONCURRENTLY orders_account_created_idx if the candidate is invalid or harmful, then restore capacity before redesigning it.
Do not continue if the target identity is ambiguous, the current state cannot be saved, the only recovery session would be at risk, or the proposed command affects more objects than the brief names.
Capture the read-only baseline
Run these commands one at a time. Replace example names and addresses deliberately; do not paste production secrets into a transcript.
SELECT version();
SELECT relname,indexrelid::regclass,indisvalid,indisready FROM pg_index JOIN pg_class ON pg_class.oid=indrelid WHERE relname='orders';
SELECT pid,xact_start,state,query FROM pg_stat_activity WHERE xact_start IS NOT NULL ORDER BY xact_start;
Interpret the baseline before moving on:
- Expected: the index becomes valid, expected plans can use it, and write latency plus replica lag stay inside budget.
- Abnormal: an old transaction delays a phase, the index is invalid, or I/O and WAL pressure harm the workload.
- Inconclusive: missing output can also mean the wrong context, permissions, namespace, log window, binary, or target. Prove those assumptions before treating absence as health.
Save the decisive output, exit status, and timestamp. Redact credentials, customer data, private topology, tokens, and complete environment dumps.
Apply the smallest candidate change
The following is state-changing example syntax, not an instruction to run it unchanged:
SET statement_timeout = '0';
SET lock_timeout = '5s';
CREATE INDEX CONCURRENTLY orders_account_created_idx ON orders(account_id,created_at);
For CREATE INDEX CONCURRENTLY, the proposed change is acceptable only when the read-only baseline predicts its effect and the rollback is available. The key risk is: concurrent creation still consumes CPU, I/O, WAL, and cannot run inside a transaction block.
Prefer an immutable artifact, validated configuration, dry-run, transaction, candidate object, or staged target when the tool supports one. Record the exact command and UTC time so later telemetry can be correlated to the change.
Verify the result from the outside in
SELECT indexrelid::regclass,indisvalid,indisready FROM pg_index WHERE indrelid='orders'::regclass;
EXPLAIN SELECT * FROM orders WHERE account_id=42 ORDER BY created_at DESC LIMIT 20;
Verification for CREATE INDEX CONCURRENTLY has three layers:
- The control plane or command reports the intended effective state.
- The process, resource, or data path reflects that state without a new pressure signal.
- The original user-visible or dependent-system path succeeds from an independent vantage point.
If SELECT indexrelid::regclass,indisvalid,indisready FROM pg_index WHERE indrelid='orders'::regclass; succeeds but the original path still fails, stop. The change may have repaired a local symptom while DNS, policy, routing, caching, dependency, or client state remains broken.
Failure branches
The baseline does not match this runbook
When an old transaction delays a phase, the index is invalid, or I/O and WAL pressure harm the workload, do not force the candidate command. Return to identity and scope, compare a healthy peer only through effective settings, and name a new falsifiable mechanism.
The change succeeds but behavior does not
A successful SET statement_timeout = '0'; proves that one interface accepted a request. It does not prove convergence, readiness, data compatibility, external routing, or client recovery. Re-run the same evidence at each downstream boundary.
The change makes the system worse
Execute the written rollback: DROP INDEX CONCURRENTLY orders_account_created_idx if the candidate is invalid or harmful, then restore capacity before redesigning it. Preserve the failed candidate and relevant logs long enough to explain the outcome; do not destroy the evidence with broad cleanup or repeated restarts.
Operator checklist
- Confirm the exact target, context, identity, version, and active owner.
- Capture the read-only baseline and one disconfirming observation.
- Label
SET statement_timeout = '0';as state-changing during review. - Keep recovery access and rollback independent of the path being edited.
- Change one layer, record UTC time, and wait for its real convergence boundary.
- Verify the original path, adjacent controls, resource pressure, and persistence.
- Update the runbook when observed behavior differs from the source-reviewed model.
Investigate it in Tryssh
$ SELECT indexrelid::regclass,indisvalid,indisready FROM pg_index WHERE indrelid='orders'::regclass; Expected: the index becomes valid, expected plans can use it, and write latency plus replica lag stay inside budget.
Tryssh can preserve this evidence loop and show a state-changing command for human approval. It does not make the operator's identity, recovery access, rollback, or platform authority decisions.
Evidence and review status
This CREATE INDEX CONCURRENTLY runbook was source-reviewed on 2026-07-29 against current first-party documentation. The commands are illustrative and use example targets. The page does not claim that the change was reproduced across every distribution, managed service, version, network, or workload.
Limitations and trade-offs
Concurrent creation still consumes CPU, I/O, WAL, and cannot run inside a transaction block. Managed platforms may generate configuration, restrict privileges, replace local state, or expose a different control plane than the upstream project. Confirm the installed version and provider contract before applying a repair.
Search visibility is not proof of operational correctness. Treat this page as a decision aid, preserve independent recovery, and stop when the evidence contradicts its assumptions.
Related operator runbooks
Continue with PostgreSQL ANALYZE statistics, PostgreSQL lock tree query, the PostgreSQL operations foundation guide, and the SSH hardening checklist.