You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Payloads are stored under content-addressable keys derived from a SHA-256 hash of the serialized payload bytes, segmented by namespace and workflow/activity identifiers when serialization context is available, e.g.:
61
+
Payloads are stored under content-addressable keys derived from a SHA-256 hash of the serialized payload bytes, segmented by namespace and workflow/activity identifiers when serialization context is available.
Fallback key (used when no namespace, workflow, or activity information is available):
72
+
73
+
v0/d/{hash-algorithm}/{hex-digest}
74
+
75
+
- Missing values (including a missing run ID) are encoded as the literal `null`.
76
+
-`hex-digest` is the lower-case SHA-256 hex digest (64 characters).
77
+
- Dynamic path segments are percent-encoded: any byte outside S3's [safe character set](https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html) (`0-9`, `a-z`, `A-Z`, and `! - _ . * ' ( )`) is escaped as `%XX` over its UTF-8 bytes.
0 commit comments