Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/getting-started/key-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ Once the SDK persists a checkpoint, that operation's result is safe. If your fun
interrupted at any point, the SDK can replay up to the last persisted checkpoint on the
next invocation.

For details on how durable operations consume checkpoints, see
[Checkpoint consumption](https://docs.aws.amazon.com/lambda/latest/dg/durable-execution-sdk.html#durable-operations-checkpoint-consumption).

## Replay

Lambda keeps a running log of all durable operations as your function executes. When
Expand Down
6 changes: 6 additions & 0 deletions docs/sdk-reference/operations/callback.md
Original file line number Diff line number Diff line change
Expand Up @@ -522,3 +522,9 @@ sam remote callback fail <callback-id> \
waiting for the callback
- [Wait](wait.md) Time-based durable waits.
- [Error handling](../error-handling/retries.md)

!!! info "Checkpoint consumption"

Durable operations consume checkpoints. To understand how this operation affects
your checkpoint usage, see
[Checkpoint consumption](https://docs.aws.amazon.com/lambda/latest/dg/durable-execution-sdk.html#durable-operations-checkpoint-consumption).
6 changes: 6 additions & 0 deletions docs/sdk-reference/operations/child-context.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,3 +322,9 @@ them to verify the child context ran and produced the expected result.
- [Steps](step.md) Run a single function with automatic checkpointing
- [Parallel operations](parallel.md) Execute operations concurrently
- [Map operations](map.md) Run operation for each item in a collection

!!! info "Checkpoint consumption"

Durable operations consume checkpoints. To understand how this operation affects
your checkpoint usage, see
[Checkpoint consumption](https://docs.aws.amazon.com/lambda/latest/dg/durable-execution-sdk.html#durable-operations-checkpoint-consumption).
6 changes: 6 additions & 0 deletions docs/sdk-reference/operations/invoke.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,3 +274,9 @@ Java exposes separate exception types for different failure modes:
- [Child contexts](child-context.md) Group operations
- [Parallel operations](parallel.md) Execute operations concurrently
- [Map operations](map.md) Run operation for each item in a collection

!!! info "Checkpoint consumption"

Durable operations consume checkpoints. To understand how this operation affects
your checkpoint usage, see
[Checkpoint consumption](https://docs.aws.amazon.com/lambda/latest/dg/durable-execution-sdk.html#durable-operations-checkpoint-consumption).
6 changes: 6 additions & 0 deletions docs/sdk-reference/operations/map.md
Original file line number Diff line number Diff line change
Expand Up @@ -688,3 +688,9 @@ operations. Each nested map creates its own set of child contexts.
- [Child contexts](child-context.md) understand child context isolation
- [Steps](step.md) use steps within map functions
- [Error handling](../error-handling/errors.md) in durable functions

!!! info "Checkpoint consumption"

Durable operations consume checkpoints. To understand how this operation affects
your checkpoint usage, see
[Checkpoint consumption](https://docs.aws.amazon.com/lambda/latest/dg/durable-execution-sdk.html#durable-operations-checkpoint-consumption).
6 changes: 6 additions & 0 deletions docs/sdk-reference/operations/parallel.md
Original file line number Diff line number Diff line change
Expand Up @@ -735,3 +735,9 @@ Each nested parallel creates its own set of child contexts.
- [Child contexts](child-context.md) understand child context isolation
- [Steps](step.md) use steps within parallel branches
- [Error handling](../error-handling/errors.md) in durable functions

!!! info "Checkpoint consumption"

Durable operations consume checkpoints. To understand how this operation affects
your checkpoint usage, see
[Checkpoint consumption](https://docs.aws.amazon.com/lambda/latest/dg/durable-execution-sdk.html#durable-operations-checkpoint-consumption).
6 changes: 6 additions & 0 deletions docs/sdk-reference/operations/step.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,3 +434,9 @@ concurrent code path.
- [Testing](../../testing/index.md)
- [Wait operations](wait.md)
- [Child contexts](child-context.md)

!!! info "Checkpoint consumption"

Durable operations consume checkpoints. To understand how this operation affects
your checkpoint usage, see
[Checkpoint consumption](https://docs.aws.amazon.com/lambda/latest/dg/durable-execution-sdk.html#durable-operations-checkpoint-consumption).
6 changes: 6 additions & 0 deletions docs/sdk-reference/operations/wait-for-condition.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,3 +184,9 @@ Lambda cold start time, and current system load.
- [Callbacks](callback.md) - Wait for external system responses
- [Steps](step.md) - Execute business logic with automatic checkpointing
- [Getting Started](../../getting-started/index.md) - Learn the basics of durable functions

!!! info "Checkpoint consumption"

Durable operations consume checkpoints. To understand how this operation affects
your checkpoint usage, see
[Checkpoint consumption](https://docs.aws.amazon.com/lambda/latest/dg/durable-execution-sdk.html#durable-operations-checkpoint-consumption).
6 changes: 6 additions & 0 deletions docs/sdk-reference/operations/wait.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,3 +264,9 @@ You can verify wait operations in your tests by inspecting the operations list:
- [Wait for Condition](wait-for-condition.md) - Poll until a condition is met
- [Callbacks](callback.md) - Wait for external system responses
- [Getting Started](../../getting-started/index.md) - Learn the basics of durable functions

!!! info "Checkpoint consumption"

Durable operations consume checkpoints. To understand how this operation affects
your checkpoint usage, see
[Checkpoint consumption](https://docs.aws.amazon.com/lambda/latest/dg/durable-execution-sdk.html#durable-operations-checkpoint-consumption).