Crates.io | vnotify |
lib.rs | vnotify |
version | |
source | src |
created_at | 2025-01-27 14:57:57.335673+00 |
updated_at | 2025-01-27 15:09:00.971687+00 |
description | Efficiently monitor S3 changes without external dependencies |
homepage | |
repository | https://github.com/denoland/vnotify |
max_upload_size | |
id | 1532500 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
vnotify
("vectorized notification") is a lightweight library for monitoring S3
changes efficiently without external dependencies. It allows to detect changes
on millions of objects with one HeadObject
and sometimes one ListObjectsV2
call.
vnotify
uses a fixed-size S3 keyspace as a "hash map" to signal bucket-wide
changes. For example, when an update is made to path/to/object
:
vnotify_index = uint64_le(blake3("path/to/object")[0..8]) % vnotify_keyspace_size
vnotify_prefix/vnotify_index
.vnotify_prefix/_
.The S3 ListObjectsV2
API returns the ETag of each object, and a change in ETag
indicates that this "hash map" slot has changed and clients' local cache needs
to be invalidated for that shard.
AWS S3 ListObjectsV2
can return a maximum of 1000 keys per invocation, so
vnotify_keyspace_size
is set to 1000
. A client that wishes to listen for
changes only needs to make 1 HeadObject
call to vnotify_prefix/_
to check if
any changes have been made, and then make 1 ListObjectsV2
call in order to
revalidate its entire local cache.
/vnotify/_
/vnotify/0
/vnotify/1
/vnotify/2
/vnotify/3
...
/vnotify/999
Certain use cases require causal consistency. Specifically, if an object is created based on the assumption that a set of updates have been made to other objects, a reader must not observe inversed causality.
vnotify
solves this problem by forcing a revalidation after a newly-seen
object is loaded from S3. The revalidation HeadObject
call happens
concurrently with the GetObject
call, so this operation does not incur
additional latency in the optimistic case.