forked from activepieces/activepieces
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request activepieces#5255 from activepieces/fix/store
fix: enforce store limit
- Loading branch information
Showing
6 changed files
with
98 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
title: "Technical limits" | ||
icon: 'ban' | ||
description: "technical limits for Activepieces execution" | ||
--- | ||
|
||
### Overview | ||
|
||
<Warning> | ||
This Limits applies for the **Activepieces Cloud**, and can be configured via environment variables for self-hosted instances. | ||
</Warning> | ||
|
||
### Flow Limits | ||
|
||
- **Execution Time**: Each flow has a maximum execution time of **600 seconds (10 minutes)**. Flows exceeding this limit will be marked as a timeout. | ||
- **Memory Usage**: During execution, a flow should not use more than **128 MB of RAM**. | ||
|
||
<Tip> | ||
**Friendly Tip #1:** Flow run in a paused state, such as Wait for Approval or Delay, do not count toward the 600 seconds. | ||
</Tip> | ||
|
||
<Tip> | ||
**Friendly Tip #2:** The execution time limit can be worked around by splitting the flows into multiple ones, such as by having one flow call another flow using a webhook, or by having each flow process a small batch of items. | ||
</Tip> | ||
|
||
### Data Storage Limits | ||
|
||
Some pieces utilize the built-in Activepieces key store, such as the Store Piece and Queue Piece. | ||
|
||
The storage limits are as follows: | ||
|
||
- **Maximum Key Length**: 128 characters | ||
- **Maximum Value Size**: 512 KB | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"name": "@activepieces/piece-queue", | ||
"version": "0.0.5" | ||
"version": "0.0.6" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters