Flow Control

Get Global Parallelism

Returns the current global parallelism usage across all flow control keys

GET/v2/globalParallelism
cURL
curl --request GET \
  --url https://qstash-{region}.upstash.io/v2/globalParallelism \
  --header 'Authorization: Bearer <token>'
200Response
{
  "parallelismMax": 123,
  "parallelismCount": 123
}

Authorization

Authorizationheaderstringrequired

Bearer authentication header of the form Bearer <token>.

Response

200 — Global parallelism info retrieved successfully

parallelismMaxinteger

The configured maximum global parallelism

parallelismCountinteger

The current number of messages running globally in parallel

Loading search…