> ## Documentation Index
> Fetch the complete documentation index at: https://upstash-dx-2885.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Rate and Period

The rate specifies the maximum number of requests allowed in a given period (time window).

```typescript Configure Retry Attempt Count theme={null}
import { Client } from "@upstash/workflow";

const client = new Client({ token: "<QSTASH_TOKEN>" })

const { workflowRunId } = await client.trigger({
  url: "https://<YOUR_WORKFLOW_ENDPOINT>/<YOUR-WORKFLOW-ROUTE>",
  flowControl: {
    key: "user-signup",
    rate: 10,
    period: 100,
  }
})
```

**Example**:
If `rate = 2` and `period = 1 minute`, then **a maximum of 2 steps** can be executed per minute.

The first 2 requests within the minute are executed immediately:

<Frame caption="Steps are executed within limit">
  <img src="https://mintcdn.com/upstash-dx-2885/Qxmya-AlZqPHD3UF/img/workflow/rate_1.png?fit=max&auto=format&n=Qxmya-AlZqPHD3UF&q=85&s=b8f5ab475dc7d3883478ab299be87e3b" width="2342" height="848" data-path="img/workflow/rate_1.png" />
</Frame>

The 3rd request in the same minute is not executed immediately:

<Frame caption="A new step cannot execute immediately">
  <img src="https://mintcdn.com/upstash-dx-2885/Qxmya-AlZqPHD3UF/img/workflow/rate_2.png?fit=max&auto=format&n=Qxmya-AlZqPHD3UF&q=85&s=c84ca9f899135f17f6f11fdaf3e23cf9" width="2342" height="848" data-path="img/workflow/rate_2.png" />
</Frame>

Instead of rejecting it, Workflow schedules the request in the next available time window:

<Frame caption="The new step is moved to the next time window">
  <img src="https://mintcdn.com/upstash-dx-2885/Qxmya-AlZqPHD3UF/img/workflow/rate_3.png?fit=max&auto=format&n=Qxmya-AlZqPHD3UF&q=85&s=ad9dc6bb453d5343af8814d38898e15f" width="2342" height="848" data-path="img/workflow/rate_3.png" />
</Frame>

Note that step executions may take longer than the defined period.
The rate limit only controls how many steps are **started** within each time window,
it does not limit their execution duration.
