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
Copy file name to clipboardExpand all lines: lib/lib-storage/src/s3-transfer-manager/README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,13 +124,13 @@ Downloads objects from S3 using multipart download with two modes:
124
124
125
125
**PART Mode:**
126
126
127
-
- Optimized for objects uploaded via multipart upload
128
-
- Uses S3's native PartNumber parameter to download parts concurrently
127
+
- Optimized for objects uploaded via multipart upload.
128
+
- Uses S3's native PartNumber parameter to download parts concurrently.
129
129
130
130
**RANGE Mode:**
131
131
132
-
- Works with any S3 object regardless of upload method
133
-
- Uses HTTP Range headers to split objects into chunks for concurrent download
132
+
- Works with any S3 object regardless of upload method.
133
+
- Uses HTTP Range headers to split objects into chunks for concurrent download.
134
134
135
135
Both modes join separate streams into a single stream and support Readable/ReadableStream for Node.js and browsers.
136
136
@@ -158,10 +158,10 @@ Both modes join separate streams into a single stream and support Readable/Reada
158
158
159
159
Both modes validate data integrity:
160
160
161
-
- **PART**: Validates part boundaries match expected byte ranges
162
-
- **RANGE**: Validates byte ranges match expected values
163
-
- Uses `IfMatch` header with initial ETag to ensure object consistency
164
-
- Throws errors and cancels download on validation failures
161
+
- **PART**: Validates part boundaries match expected byte ranges.
162
+
- **RANGE**: Validates byte ranges match expected values.
163
+
- Uses `IfMatch` header with initial ETag to ensure object consistency.
164
+
- Throws errors and cancels download on validation failures.
165
165
166
166
We do not recommend updating the object you're downloading mid-download as this may throw a [Precondition Failed error](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/http-412-precondition-failed.html).
0 commit comments