Non-concurrent index on public.orders
CREATE INDEX idx_orders_status ON orders (status);
A standard index build can block writes on this large, actively written table.
Safer next stepUse CREATE INDEX CONCURRENTLY outside a transaction, then verify the index is valid.
Stats are estimates from read-only system views. Workload can change after the snapshot.