layout | title | permalink | redirect_from | ||
---|---|---|---|---|---|
post |
CHECKSUM |
/docs/checksum |
|
-
xxhash
is the system-default checksum. -
xxhash
can be overridden on a bucket level; the following CLI example configures bucketabc
withsha256
and bucketxyz
without any checksum protection whatsoever:$ ais bucket props ais://abc checksum.type <TAB-TAB> crc32c md5 none sha256 sha512 xxhash $ ais bucket props ais://abc checksum.type sha256 Bucket props successfully updated "checksum.type" set to:"sha256" (was:"xxhash") $ ais bucket props ais://xyz checksum.type none Bucket props successfully updated "checksum.type" set to:"none" (was:"xxhash")
AIS-own metadata, both cluster-level and object metadata, is currently always protected with
xxhash
. -
Unless checksum is disabled, objects stored in this bucket are protected with the checksum; user can override the system default on a bucket level by setting checksum=
none
(see example above). -
Bucket (re)configuration can be done at any time. For instance, bucket's checksumming option can be changed from
xxhash
tosha512
, and later tocrc32c
, and then back toxxhash
- multiple times with no limitations. -
An object with a bad checksum cannot be read from the bucket and cannot be replicated or migrated. Corrupted objects get eventually removed from the system.
-
GET and PUT operations support an option to validate checksums; validation is done against a checksum stored with an object (GET), or a checksum provided by a user (PUT).
-
Checksum configuration supports a number of options that can be changed both globally (for the entire cluster) and on a bucket level - notice the defaults below:
"checksum": { "type": "xxhash", "validate_cold_get": true, # validate cold GET from Cloud buckets "validate_warm_get": false, # validate warm GET "validate_obj_move": false, # validate object migration "enable_read_range": false # enable checksumming for ranges },
-
In more detail:
checksum.type
(string
): supports a number of checksums includingxxhash
(the current default);checksum.validate_cold_get
(bool
): indicates whether to perform checksum validation when cold GET-ing objects from Cloud buckets;checksum.validate_warm_get
(bool
): prescribes whether to perform checksum validation when reading objects stored in AIS cluster;checksum.enable_read_range
(bool
): indicates whether to generate checksums when executing GET(object, range), whererange
is offset and length (in bytes) to read;checksum.validate_obj_move
(bool
): indicates whether to perform checksum validation upon object migration.
-
Object replication is always checksum-protected. If an object does not have a checksum (see #3 above), the latter gets computed on the fly and stored with the object, so that subsequent replications/migrations could reuse it.
-
Finally, when two objects in the cluster have identical (bucket, object) names and identical checksums, they are considered to be full replicas of each other - the fact that allows optimizing PUT, replication, and object migration in a variety of use cases.