> ## Documentation Index
> Fetch the complete documentation index at: https://upstash-dx-3029-wake-on-request-docs.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={"system"}
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-3029-wake-on-request-docs/HNXXbv-o-h3Gn6NJ/img/workflow/rate_1.png?fit=max&auto=format&n=HNXXbv-o-h3Gn6NJ&q=85&s=3ccb90e3639e7e9c0717df75144009eb" alt="Steps are executed within limit" 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-3029-wake-on-request-docs/HNXXbv-o-h3Gn6NJ/img/workflow/rate_2.png?fit=max&auto=format&n=HNXXbv-o-h3Gn6NJ&q=85&s=54436577cbb041c9acfa65f9471c3bc4" alt="A new step cannot execute immediately" 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-3029-wake-on-request-docs/HNXXbv-o-h3Gn6NJ/img/workflow/rate_3.png?fit=max&auto=format&n=HNXXbv-o-h3Gn6NJ&q=85&s=35c99771592ad6ad8ff18af2a2606d06" alt="The new step is moved to the next time window" 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.
