Contention.
When multiple parties want to spend the same UTxO, only one can win per pool-state transition. The rest must wait for the new UTxO.
A single popular ATM. Only one person can use it at a time. The fix is either more ATMs (fragmentation) or a queue manager (batchers).
In depth
Because a UTxO is consumed in full and only once, any shared-state contract whose state lives in a single UTxO becomes a contention point: every state change produces a brand-new UTxO that the next user has to spend. Solutions: batchers that aggregate user requests off-chain into one tx, pool fragmentation (many small pools), reference inputs for read-only data, or contract designs that avoid global state altogether.
Example
A new AMM pool starts as one UTxO holding all liquidity. Without a batcher, only one swap per block can succeed; the rest fail or wait.