durable_execution_sdk/docs/limits.rs
1//! # Execution Limits and Constraints
2//!
3//! For detailed documentation on execution limits, see the
4//! [LIMITS.md](https://github.com/aws/durable-execution-sdk-rust/blob/main/durable-execution-sdk/docs/LIMITS.md)
5//! file in the repository.
6//!
7//! ## Quick Summary
8//!
9//! | Limit | Value |
10//! |-------|-------|
11//! | Maximum execution duration | 1 year |
12//! | Minimum wait duration | 1 second |
13//! | Maximum wait duration | 1 year |
14//! | Maximum response payload | 6 MB |
15//! | Maximum checkpoint payload | 256 KB |
16//! | Maximum input payload | 256 KB |
17//! | Maximum history size | 25,000 operations |
18//! | Maximum checkpoint batch | 750 KB |
19//! | Maximum callback timeout | 1 year |
20
21// This module is documentation-only.