Rust python FSs
Implements s3, gcs, azure blob and HTTP backends for fsspec using Rust.
Respects concurrency of many simultaneous requests as made by fsspec, but
Currently only the methods cat_ranges
, cat
and cat_file
are supported, enough
to open a (consolidated) zarr dataset for reading.
The http backend supports:
The s3 implementation supports configuration by environment variables and .aws files, and options
The GCS backend supports:
The Azure blob backend supports
> pip install -i https://pypi.anaconda.org/mdurant/simple rfsspec
Latest results from examples/script.py:
Rust http: 0.1335
Rust s3: 0.1163
Rust anon s3: 0.0921
fsspec http: 0.1611
fsspec s3: 0.4758
fsspec anon s3: 0.4208
(multi-threaded benchmarks should be more meaningful)