# LWLock: ProcArray

> Waiting to access the shared per-process data structures (typically, to get a snapshot or report a session's transaction ID)
---

<div class="event-kicker">PostgreSQL wait event dossier</div>
<div class="event-identity">
  <span>Class<strong>LWLock</strong></span>
  <span>Event<strong><code>ProcArray</code></strong></span>
  <span>Versions<strong>PG 13-18</strong></span>
  <span>Evidence<strong>3 source location(s)</strong></span>
</div>

## Official description {#official-description}

Waiting to access the shared per-process data structures (typically, to get a snapshot or report a session's transaction ID)

| PG 13 | PG 14 | PG 15 | PG 16 | PG 17 | PG 18 |
| :---: | :---: | :---: | :---: | :---: | :---: |
| ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |

## Trigger mechanism {#mechanism}

ProcArrayLock protects the shared PGPROC/PGXACT arrays used for snapshots, transaction visibility, and transaction end. Snapshot acquisition and updates to process transaction state must briefly coordinate through it.

## Normal or trouble? {#normal-vs-trouble}

- <span class="severity-normal">**Normal:**</span> Brief waits are expected on busy OLTP systems that start and finish many transactions.
- <span class="severity-watch">**Investigate:**</span> Persistent contention can accompany extreme connection counts, snapshot-heavy workloads, long transactions, or bursts of transaction completion.

## Diagnostic SQL {#diagnostic-sql}

```sql {title="Sessions waiting on LWLock/ProcArray"}
SELECT pid, backend_type, usename, datname, application_name,
       state, now() - query_start AS query_age,
       now() - xact_start AS xact_age,
       wait_event_type, wait_event,
       pg_blocking_pids(pid) AS blocking_pids,
       left(query, 160) AS query
FROM pg_stat_activity
WHERE wait_event_type = 'LWLock'
  AND wait_event = 'ProcArray'
ORDER BY query_age DESC NULLS LAST;
```

```sql {title="Current LWLock cohort"}
SELECT wait_event, count(*) AS waiting_sessions,
       count(*) FILTER (WHERE state = 'active') AS active_waiters,
       max(now() - query_start) AS oldest_query
FROM pg_stat_activity
WHERE wait_event_type = 'LWLock'
GROUP BY wait_event
ORDER BY waiting_sessions DESC, wait_event;
```

```sql {title="Lock and relation context for these sessions"}
SELECT a.pid, l.locktype, l.mode, l.granted, l.fastpath,
       d.datname, n.nspname, c.relname,
       l.page, l.tuple, l.virtualxid, l.transactionid,
       l.classid, l.objid, l.objsubid
FROM pg_stat_activity AS a
LEFT JOIN pg_locks AS l ON l.pid = a.pid
LEFT JOIN pg_database AS d ON d.oid = l.database
LEFT JOIN pg_class AS c
  ON c.oid = l.relation
 AND l.database = (
       SELECT oid FROM pg_database WHERE datname = current_database()
     )
LEFT JOIN pg_namespace AS n ON n.oid = c.relnamespace
WHERE a.wait_event_type = 'LWLock'
  AND a.wait_event = 'ProcArray'
ORDER BY a.pid, l.granted, l.locktype, l.mode;
```

## Response {#response}

1. Measure active backends and transaction age, not only total connections.
2. Find long-running and idle-in-transaction sessions that keep visibility horizons old.
3. Pool connections, shorten transactions, and avoid synchronized bursts of tiny transactions.

## Source evidence {#source}

- [PostgreSQL 18.6 · src/backend/access/transam/xlog.c:6121](https://github.com/postgres/postgres/blob/REL_18_6/src/backend/access/transam/xlog.c#L6121) — `ProcArray`
- [PostgreSQL 18.6 · src/backend/storage/lmgr/lwlock.c:739](https://github.com/postgres/postgres/blob/REL_18_6/src/backend/storage/lmgr/lwlock.c#L739) — `pgstat_report_wait_start`
- [PostgreSQL 18.6 · src/backend/utils/activity/wait_event_names.txt:316](https://github.com/postgres/postgres/blob/REL_18_6/src/backend/utils/activity/wait_event_names.txt#L316) — `ProcArray`

## Related controls and signals {#related}

- **GUCs:** [[guc:max_connections]](/guc/max-connections/) · [[guc:idle_in_transaction_session_timeout]](/guc/idle-in-transaction-session-timeout/)
- **Metrics:** [[metric:waiting_sessions]](/metric/waiting-sessions/) · [[metric:wait_event_share]](/metric/wait-event-share/) · [[metric:active_backends]](/metric/active-backends/) · [[metric:oldest_transaction_age]](/metric/oldest-transaction-age/)

## Typical incident pattern {#incident}

An application reconnect storm creates thousands of short transactions while a reporting query holds an old snapshot, amplifying ProcArray traffic.

---

Backlinks:

- [LWLock](/lwlock/)
