⚠️ This version of the docs is deprecated. Looking for the latest features and updates? Explore our latest documentation.

# Limits

Pipedream imposes limits on source and workflow execution, the events you send to Pipedream, and other properties. You'll receive an error if you encounter these limits.

Some of these limits apply only on the free tier. For example, Pipedream limits the daily number of invocations and execution time you can use on the free tier. On paid tiers, you can run an unlimited number of invocations, for any amount of execution time.

Other limits apply to both the free and paid tiers, but many can be raised upon request. Please see the details on each limit below.

These limits are subject to change at any time.

# Number of Workflows

You can run an unlimited number of workflows, as long as each operates under the limits below.

# Number of Event Sources

You can run an unlimited number of event sources, as long as each operates under the limits below.

# Daily Invocations

Tier Daily Invocations Quota
Developer 333
Professional Plan No limit (pay per invocation above the base invocations quota)
Orgs (free) 66
Orgs (Team Plan) No limit (pay per invocation above the base invocations quota)

You can view your invocations usage in your Billing and Usage Settings (opens new window). Here you'll find your usage for the last 30 days, broken out by day, and by source / workflow.

Your quota is reset, daily, at 00:00 (midnight) UTC.

# Invocations Quota Notifications

Tier Notifications
Free tiers You'll receive an email at 80% and 100% of your daily usage.
Paid tiers You'll receive an email at 80% and 100% of your base invocations quota for your billing period.

# Compute time per day

Users on the Developer (free) tier, and free Organizations, have a default compute time quota of 30 minutes (1,800,000 milliseconds) per day across all workflows and event sources. You are not limited on compute time on paid plans like the Professional tier.

You can view your current usage in your Billing and Usage Settings (opens new window).

Your compute time quota is reset, daily, at 00:00 (midnight) UTC.

# Compute Time Quota Notifications

Tier Notifications
Free tiers You'll receive an email at 80% and 100% of your daily usage.
Paid tiers Not applicable - Paid tiers have unlimited compute time, so receive no notifications

# HTTP Triggers

The following limits apply to HTTP triggers.

# HTTP Request Body Size

By default, the body of HTTP requests sent to a source or workflow is limited to 512KB.

Your endpoint will issue a 413 Payload Too Large status code when the body of your request exceeds 512KB.

Pipedream supports two different ways to bypass this limit. Both of these interfaces support uploading data up to 5TB, though you may encounter other platform limits.

  • You can send large HTTP payloads by passing the pipedream_upload_body=1 query string or an x-pd-upload-body: 1 HTTP header in your HTTP request. Read more here.
  • You can upload multiple large files, like images and videos, using the large file upload interface.

# QPS (Queries Per Second)

Generally the rate of HTTP requests sent to an endpoint is quantified by QPS, or queries per second. A query refers to an HTTP request.

You can send an average of 10 requests per second to your HTTP trigger. Any requests that exceed that threshold may trigger rate limiting. If you're rate limited, we'll return a 429 Too Many Requests response. If you control the application sending requests, you should retry the request with exponential backoff (opens new window) or a similar technique.

We'll also accept short bursts of traffic, as long as you remain close to an average of 10 QPS (e.g. sending a batch of 50 requests every 30 seconds should not trigger rate limiting).

This limit can be raised for Professional, Teams, and Enterprise customers. To request an increase, reach out to our Support team (opens new window) with the HTTP endpoint whose QPS you'd like to increase, with the new, desired limit.

# Email Triggers

Currently, most of the limits that apply to HTTP triggers also apply to email triggers.

The only limit that differs between email and HTTP triggers is the payload size: the body of HTTP requests is limited to 512KB, where the total size of an email sent to a workflow - its body, headers, and attachments - is limited to 150KB on the default interface.

However, you can send emails up to 30MB in size using the address [YOUR EMAIL ENDPOINT]@upload.pipedream.net. Read more here.

This 30MB limit cannot be raised.

# Memory

By default, workflows run with 256MB of memory. You can modify a workflow's memory in your workflow's Settings, up to 10GB.

Increasing your workflow's memory gives you a proportional increase in CPU. If your workflow is limited by memory or compute, increasing your workflow's memory can reduce its overall runtime and make it more performant.

Pipedream charges invocations proportional to your memory configuration. Read more here.

# Disk

Your code, or a third party library, may need access to disk during the execution of your workflow or event source. You have access to 512 MB of disk in the /tmp directory.

This limit cannot be raised.

# Workflows

# Time per execution

Every event sent to a workflow triggers a new execution of that workflow. Workflows have a default execution limit that varies with the trigger type:

  • HTTP and Email-triggered workflows default to 30 seconds per execution.
  • Cron-triggered workflows default to 60 seconds per execution.

If your code exceeds your workflow-level limit, we'll throw a Timeout error and stop your workflow. Any partial logs and observability associated with code cells that ran successfully before the timeout will be attached to the event in the UI, so you can examine the state of your workflow and troubleshoot where it may have failed.

You can increase the timeout limit, up to a max value set by your plan:

Tier Maximum time per execution
Free tiers 300 seconds (5 min)
Paid tiers 750 seconds (12.5 min)

Events that trigger a Timeout error will appear in red in the Inspector. You'll see the timeout error, also in red, in the cell at which the code timed out.

# Event / Execution History

The Inspector shows the execution history for a given workflow. There are two limits that impact this history:

  • You can view the last 100 events sent to your workflow. Sending events over this limit removes the oldest event in the history from Pipedream's system.
  • The execution details for a specific run also expires after 30 days. So if a workflow was triggered once a day, you’d only see a rolling history of 30 executions.

If you'd like to store execution or error history for a longer period, consider sending execution data to a table in the SQL Service, an Amazon S3 bucket, or another external data store.

# Logs, Step Exports, and other observability

The total size of console.log() statements, step exports, and the original event data sent to the workflow cannot exceed a combined size of 6MB. If you produce logs or step exports larger than this - for example, passing around large API responses, CSVs, or other data - you may encounter a Function Payload Limit Exceeded in your workflow.

This limit cannot be raised.

# SQL Service

You can create any number of tables in the SQL service, and store any number of records. However, there are a few limits you should be aware of

  • Events sent to a SQL Destination are stored for 30 days. After 30 days, the record is completely deleted. Records newer than 30 days (for example, data sent a day ago) will be retained, until that record is 30 days old, at which point it will be deleted. Read more here.
  • Queries are limited to a runtime of 60 seconds.
  • You cannot issue a query that returns over 1GB of data.

Read more about the SQL Service here.

# Acceptable Use

We ask that you abide by our Acceptable Use (opens new window) policy. In short this means: don't use Pipedream to break the law; don't abuse the platform; and don't use the platform to harm others.

Still have questions?

Please reach out if this doc didn't answer your question. We're happy to help!