A. Why It Matters
Knowing system limits prevents errors and helps you build efficient processes.
B. Execution Time Limit
Limit | Value |
Max Process Runtime | 15 minutes |
If your process takes longer, it will fail.
💡Tip: Break large processes into smaller ones or use conditional logic to skip unnecessary steps.
C. Lookup Table Limits
Limit Type | Value | Adjustable? |
Tables per tenant | 100 | ❌ No |
Columns per table | 20 | ❌ No |
Records per table | 50,000 | ❌ No |
If you hit these limits:
- Remove unused tables/columns
- Split data across multiple tables
- Use an external database if needed
Comments
0 comments
Please sign in to leave a comment.