Skip to content

Commit 499a12b

Browse files
committed
update external storage to public preview
1 parent 0bb7775 commit 499a12b

4 files changed

Lines changed: 14 additions & 8 deletions

File tree

docs/develop/go/best-practices/data-handling/external-storage.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ description: Offload large payloads to external storage using the claim check pa
1313

1414
:::info Release, stability, and dependency info
1515

16-
External Storage is in [Pre-Release](/evaluate/development-production-features/release-stages#pre-release). APIs and
17-
configuration may change before the stable release. Join the
16+
External Storage is in [Public Preview](/evaluate/development-production-features/release-stages#public-preview). APIs and
17+
configuration may change before General Availability. Join the
1818
[#large-payloads Slack channel](https://temporalio.slack.com/archives/C09VA2DE15Y) to provide feedback or ask for help.
1919

2020
:::
@@ -87,6 +87,8 @@ w := worker.New(c, "my-task-queue", worker.Options{})
8787
All Workflows and Activities running on the Worker use the storage driver automatically without changes to your
8888
business logic. The driver uploads and downloads payloads concurrently and validates payload integrity on retrieve.
8989

90+
The S3 driver includes diagnostic metadata, such as the AWS region, in error messages to help troubleshoot storage failures.
91+
9092
## Implement a custom storage driver
9193

9294
If you need a storage backend other than what the built-in drivers allow, you can implement your own storage driver.

docs/develop/python/best-practices/data-handling/external-storage.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ description: Offload large payloads to external storage using the claim check pa
1313

1414
:::info Release, stability, and dependency info
1515

16-
External Storage is in [Pre-Release](/evaluate/development-production-features/release-stages#pre-release). APIs and
17-
configuration may change before the stable release. Join the
16+
External Storage is in [Public Preview](/evaluate/development-production-features/release-stages#public-preview). APIs and
17+
configuration may change before General Availability. Join the
1818
[#large-payloads Slack channel](https://temporalio.slack.com/archives/C09VA2DE15Y) to provide feedback or ask for help.
1919

2020
:::
@@ -83,6 +83,8 @@ worker = Worker(
8383
All Workflows and Activities running on the Worker use the storage driver automatically without changes to your
8484
business logic. The driver uploads and downloads payloads concurrently and validates payload integrity on retrieve.
8585

86+
The S3 driver includes diagnostic metadata, such as the AWS region, in error messages to help troubleshoot storage failures.
87+
8688
## Implement a custom storage driver
8789

8890
If you need a storage backend other than what the built-in drivers allow, you can implement your own storage driver.

docs/encyclopedia/data-conversion/external-storage.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import { CaptionedImage } from '@site/src/components';
2323

2424
:::info Release, stability, and dependency info
2525

26-
External Storage is in [Pre-Release](/evaluate/development-production-features/release-stages#pre-release). APIs and
27-
configuration may change before the stable release. Join the
26+
External Storage is in [Public Preview](/evaluate/development-production-features/release-stages#public-preview). APIs and
27+
configuration may change before General Availability. Join the
2828
[#large-payloads Slack channel](https://temporalio.slack.com/archives/C09VA2DE15Y) to provide feedback or ask for help.
2929

3030
:::
@@ -106,6 +106,8 @@ A storage driver connects External Storage to a backing store. Each driver provi
106106
later.
107107
- **Retrieve**. Download payloads using the claims that `store` produced.
108108

109+
The S3 driver also includes diagnostic metadata in error messages, such as the AWS region, to help with troubleshooting storage failures.
110+
109111
Temporal SDKs include built-in drivers for common storage systems like Amazon S3. You can configure multiple storage
110112
drivers and use a selector function to route payloads to different drivers based on size, type, or other criteria such
111113
as hot and cold storage tiers.

docs/troubleshooting/blob-size-limit-error.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ Workflow is not terminated and remains open, so you can deploy a fix and allow t
7171

7272
:::tip Support, stability, and dependency info
7373

74-
External Storage is currently in [Pre-release](/evaluate/development-production-features/release-stages#pre-release).
75-
All APIs are experimental and may be subject to backwards-incompatible changes. Join the
74+
External Storage is in [Public Preview](/evaluate/development-production-features/release-stages#public-preview).
75+
APIs and configuration may change before General Availability. Join the
7676
[#large-payloads Slack channel](https://temporalio.slack.com/archives/C09VA2DE15Y) to provide feedback or ask for
7777
help.
7878

0 commit comments

Comments
 (0)