Documentation Index
Fetch the complete documentation index at: https://www.activepieces.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
The numbers in the Cloud column are the limits enforced on
cloud.activepieces.com. On self-hosted
installations every limit is configurable through the environment variable
shown in the table — the Self-hosted default column lists the value applied
when the variable is unset.
Execution
| Limit | Cloud | Env var | Self-hosted default |
|---|---|---|---|
| Flow run timeout | 10 min | AP_FLOW_TIMEOUT_SECONDS | 600 |
| Worker process memory | 1 GB | AP_SANDBOX_MEMORY_LIMIT (KB) | 1048576 |
| Paused flow lifetime | 30 days | AP_PAUSED_FLOW_TIMEOUT_DAYS | 30 |
| Worker concurrency (per worker) | 10 | AP_WORKER_CONCURRENCY | 5 |
Files & flow run logs
Files emitted by actions or triggers are persisted to the database or S3 so the
flow can retry from a later step. The log size limit applies to the combined
inputs and outputs of every step in a single run; step outputs above the slice
threshold are offloaded to object storage and re-hydrated on demand instead of
sitting in worker memory.
| Limit | Cloud | Env var | Self-hosted default |
|---|---|---|---|
| Step file size | 10 MB | AP_MAX_FILE_SIZE_MB | 25 |
| Flow run log size (combined inputs + outputs, includes sliced payloads) | 25 MB | AP_MAX_FLOW_RUN_LOG_SIZE_MB | 50 |
| Step output slice threshold | 32 KB | AP_FLOW_RUN_LOG_SLICE_THRESHOLD_KB | 32 |
| Step input truncate threshold | 2 KB | AP_FLOW_RUN_LOG_INPUT_TRUNCATE_THRESHOLD_KB | 2 |
How it works
- Input — values above
AP_FLOW_RUN_LOG_INPUT_TRUNCATE_THRESHOLD_KBare replaced with a placeholder in the log; the step still receives the full value at runtime. - Output — outputs above
AP_FLOW_RUN_LOG_SLICE_THRESHOLD_KBare offloaded to object storage and replaced with a reference in the log; the payload is re-hydrated on demand. - Total — the cumulative size of inputs and outputs (counting the
original size of offloaded outputs) is capped by
AP_MAX_FLOW_RUN_LOG_SIZE_MB. Runs that exceed it end with statusLOG_SIZE_EXCEEDED.
Webhooks
| Limit | Cloud | Env var | Self-hosted default |
|---|---|---|---|
| Sync webhook response timeout | 30 s | AP_WEBHOOK_TIMEOUT_SECONDS | 30 |
| Max webhook payload size | 5 MB | AP_MAX_WEBHOOK_PAYLOAD_SIZE_MB | 25 |
| Webhook payload inline threshold | 1024 KB | AP_WEBHOOK_PAYLOAD_INLINE_THRESHOLD_KB | 512 |
Key / value storage
Used by the built-in Store piece and any piece that callscontext.store.
| Limit | Value |
|---|---|
| Maximum key length | 128 characters |
| Maximum value size | 512 KB |