OUT_OF_BAND
Table of Contents
- Example
- Out-of-band updates
- Lesser scope
- Out-of-band writes, deletes and more
- When reading in-cluster data causes deletion
- GET latest version
- References
There are multiple ways to fully synchronize in-cluster content with remote backend. Let’s first take a look at the following ais cp and ais prefetch examples:
Example
$ ais cp s3://BUCKET s3://BUCKET --prefix PREFIX --num-workers 64 --sync
Notice the --sync option.
Alternatively, to fully synchronize in-cluster content (and since “prefetch” typically does not imply any deletions) we can also use ais evict followed by ais prefetch:
## run "evict" and wait for the job to finish; optionally use `--wait` option
##
$ ais evict BUCKET[/PREFIX] --keep-md
## optionally, `ais ls` to show that nothing is "cached"
##
$ ais ls BUCKET[/PREFIX] --cached
## no need to use `--latest` option (redundant and slowing-down).
##
$ ais prefetch BUCKET[/PREFIX] --num-workers 64 --blob-threshold 1GiB
Notice the
--keep-mdoption above.
TIP: always a good idea to check
--helpfor the most recent updates.
Out-of-band updates
One (but not the only one) way to deal with out-of-band updates is to configure bucket as follows:
$ ais bucket props set s3://abc versioning.validate_warm_get true
"versioning.validate_warm_get" set to: "true" (was: "false")
Here, s3://abc is presumably an Amazon S3 bucket, but it could be any Cloud or remote AIS bucket.
It could also be any
ais://bucket with Cloud or remote AIS backend. For usage, seebackend_bckoption in CLI documentation and examples.
Once validate_warm_get is set, any read operation on the bucket will take a bit of extra time to compare the in-cluster metadata with its remote counterpart.
Further, if and when this comparison fails, aistore performs a cold GET, to create a new copy of the remote object and make sure that the cluster has the latest version.
Needless to say, the latest version will be always returned to the user as well.
Lesser scope
But sometimes, we may want to perform a single given operation without updating bucket configuration. For instance:
$ ais prefetch s3://abc --latest
prefetch-objects[f70MKzP63]: prefetch entire bucket s3://abc. To monitor the progress, run 'ais show job f70MKzP63'
Notice the --latest switch above. As far as this particular prefetch is concerned --latest will have the same effect as setting versioning.validate_warm_get=true. But only “as far” - the scope of validating in-cluster versions will be limited to this specific batch job.
The same applies to copying buckets and copying ranges and lists of objects, and certainly getting (as in GET) individual objects.
Here’s the an excerpt from GET help (and note --latest below):
$ ais get --help
USAGE:
ais get BUCKET[/OBJECT_NAME] [OUT_FILE|OUT_DIR|-] [command options]
OPTIONS:
--offset value object read offset; must be used together with '--length'; default formatting: IEC (use '--units' to override)
--length value object read length; default formatting: IEC (use '--units' to override)
--checksum validate checksum
--yes, -y assume 'yes' to all questions
--check-cached instead of GET execute HEAD(object) to check if the object is present in aistore
(applies only to buckets with remote backend)
--latest GET, prefetch, or copy the latest object version from the associated remote bucket;
allows operation-level control over object version synchronization _without_ changing bucket configuration
(the latter can be done using 'ais bucket props set BUCKET versioning')
...
See also
ais cpcommand and, in particular, its--syncoption.- Example copying buckets and multi-objects with simultaneous synchronization
Out-of-band writes, deletes and more
- with version validation enabled, aistore will detect both out-of-band writes and deletes;
- buckets with versioning disabled are also supported;
- decision on whether to perform cold-GET is made upon comparing remote and local metadata;
- the latter always includes object size, but also may include any combination of:
versionETagais object checksum(by default, xxhash that we store as part of custom Cloud metadata)MD5CRC32C
To enable version validation, run:
$ ais bucket props set BUCKET versioning.validate_warm_get true
## optionally:
$ ais bucket props show BUCKET versioning
PROPERTY VALUE
versioning.enabled ...
versioning.validate_warm_get true
versioning.synchronize false
No assumption is being made on whether any of the above is present (except, of course, the size aka “Content-Length”).
The rules are simple:
- compare existing items of the same kind (
sizevssize,MD5andMD5, etc.); - fail immediately - that is, require cold GET - if any pair of comparable items differ;
- count all matches except
size(in other words, same size does not contribute to decision in favor of skipping cold GET); - exclude double counting (which is mostly relevant for
ETagvsMD5); - require two or more matches.
When there are no matches, we go ahead with cold GET.
A single match - e.g. only the version (if exists), or only ETag, etc. - is currently resolved positively iff the source backend is the same as well.
E.g., copying object from Amazon to Google and then performing validated GET with aistore backend “pointing” to Google - will fail the match.
TODO: make it configurable to require at least two matches.
Needless to say, if querying remote metadata fails the corresponding GET transaction will fail as well.
When reading in-cluster data causes deletion
But there’s one special condition when the call to query remote metadata returns “object not found”. In other words, when the remote backend unambiguously indicates that the remote object does not exist (any longer).
In this case, there are two configurable choices as per (already shown) versioning section of the bucket config:
$ ais bucket props show BUCKET versioning
PROPERTY VALUE
versioning.enabled ...
versioning.validate_warm_get true
versioning.synchronize false ## <<<<<<<<<<<<<<<< note!
The knob called versioning.synchronize is simply a stronger variant of the versioning.validate_warm_get;
that entails both:
- validating remote object version, and
- deleting in-cluster object if its remote (“cached”) counterpart does not exist.
To recap:
if an attempt to read remote metadata returns “object not found”, and versioning.synchronize is set to true, then
we go ahead and delete the object locally, thus effectively synchronizing in-cluster content with it’s remote source.
GET latest version
But sometimes, there may be a need to have a more fine-grained, operation level, control over this functionality.
AIS API supports that. In CLI, the corresponding option is called --latest. Let’s see a brief example, where:
s3:///abcis a bucket that containss3://abc/README.mdobject that was previously- out-of-band updated
In other words, the setup we describe boils down to a single main point:
- aistore contains a different version of an object (in this example:
s3://abc/README.md).
Namely:
$ aws s3api list-object-versions --bucket abc --prefix README.md --max-keys 1
{
"Name": "abc",
"KeyMarker": "",
"MaxKeys": 1,
"IsTruncated": true,
"NextVersionIdMarker": "KJOQsGcR3qBX5WvXbwiB.2LAQW12opbQ",
...
"Versions": [
{
"IsLatest": true,
...
}
],
"Prefix": "README.md"
}
AIS, on the other hand, shows:
$ ais show object s3://abc/README.md --props version
PROPERTY VALUE
version 1yNHzpfd9Y16nDS71V5scjTMfbRZUPJI
Moreover, GET operation with default parameters doesn’t help:
$ ais get s3://abc/README.md /dev/null
GET (and discard) README.md from s3://abc (13.82KiB)
$ ais show object s3://abc/README.md --props version
PROPERTY VALUE
version 1yNHzggpfd9Y16nDS71V5scjTMfbRZUPJI
To reconcile, we employ the --latest option:
$ ais get s3://abc/README.md /dev/null --latest
GET (and discard) README.md from s3://abc (13.82KiB)
$ ais show object s3://abc/README.md --props version
PROPERTY VALUE
version KJOQsGcR3qBX5WvXbwiB.2LAQW12opbQ
Notice that we now have the latest KJOQsGc... version (that s3api also calls VersionIdMarker).
References
ais cpcommand and, in particular, its--syncoption.- Example copying buckets and multi-objects with simultaneous synchronization