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
The value of S3FileSystem.checksum() changes when a file is moved to a new location even if the file is not modified.
I have a file at s3://path/file
I copy that file to s3://path/a/file
The values of S3FileSystem.checksum('s3://path/file) and S3FileSystem.checksum('s3://path/a/file') are different when they should be the same.
The text was updated successfully, but these errors were encountered:
Although called "checksum", this is in fact the ETag and should be interpreted as a unique identifier of a version. The doc says:
Unique value for current version of file
If the checksum is the same from one moment to another, the contents
are guaranteed to be the same. If the checksum changes, the contents
*might* have changed.
The value of S3FileSystem.checksum() changes when a file is moved to a new location even if the file is not modified.
I have a file at s3://path/file
I copy that file to s3://path/a/file
The values of S3FileSystem.checksum('s3://path/file) and S3FileSystem.checksum('s3://path/a/file') are different when they should be the same.
The text was updated successfully, but these errors were encountered: