is it possible to display CRC64NVME calculated during s3 upload ? #9315
Replies: 1 comment 1 reply
-
|
AWS CLI v2 already calculates a CRC-based checksum during The practical way to get the CRC64NVME for the uploaded object without re-reading the file is:
aws s3 cp /path/to/file s3://my-bucket/my-key --checksum-algorithm CRC64NVME
aws s3api head-object If you truly need to see the computed value “during” the upload, the only workaround is Summary: AWS CLI can compute CRC64NVME during upload, but it does not print it as normal output. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
we do massive "aws s3 cp "
our disk io does not allow us to read files extra time.
is it possible to tell aws cli something like "please calculate CRC64NVME during upload of certain object and tell me" ?
Beta Was this translation helpful? Give feedback.
All reactions