@beignet/provider-storage-s3 0.0.32 → 0.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +7 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @beignet/provider-storage-s3
|
|
2
2
|
|
|
3
|
+
## 0.0.33
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 92af951: Document and test the provider resilience baseline: mail providers fail fast
|
|
8
|
+
without provider-owned retries, while S3 delegates bounded retries to the AWS
|
|
9
|
+
SDK or caller-owned injected clients.
|
|
10
|
+
|
|
3
11
|
## 0.0.32
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -110,9 +110,10 @@ contract:
|
|
|
110
110
|
|
|
111
111
|
## Retries
|
|
112
112
|
|
|
113
|
-
S3 operations are idempotent, so
|
|
114
|
-
add its own retry loop;
|
|
115
|
-
default is `standard` retry mode
|
|
113
|
+
S3 operations are idempotent, so bounded retry is appropriate. The provider
|
|
114
|
+
does not add its own retry loop; when it creates an AWS SDK client, the AWS SDK
|
|
115
|
+
retries transient failures itself. The SDK default is `standard` retry mode
|
|
116
|
+
with 3 attempts, including the first attempt.
|
|
116
117
|
|
|
117
118
|
Tune the SDK behavior through provider options or env:
|
|
118
119
|
|
|
@@ -135,7 +136,9 @@ throttle errors.
|
|
|
135
136
|
|
|
136
137
|
`createS3Storage(...)` and `createS3UploadSigner(...)` accept the same
|
|
137
138
|
`maxAttempts` and `retryMode` options when they create the default client.
|
|
138
|
-
Injected clients keep their own retry configuration
|
|
139
|
+
Injected clients keep their own retry configuration and are called once by
|
|
140
|
+
Beignet. Configure retry behavior on the injected client when the app owns the
|
|
141
|
+
client lifecycle.
|
|
139
142
|
|
|
140
143
|
## Direct port factory
|
|
141
144
|
|