16.52When to switch to async
If you keep solving:
downstream slow
with:
increase API timeout from
10 sec → 30 sec → 60 sec
that's often a sign the operation shouldn't be synchronous.
Ask:
Does the caller really need completion now?
If not:
queue
202
async worker
may be the correct architecture.