Skip to main content

Helper to simplify concurrent access to object scanning in AWS S3 buckets.

Project description

s3workers

https://img.shields.io/pypi/v/s3workers.svg https://img.shields.io/travis/bradrf/s3workers.svg Documentation Status Updates

Helper to simplify concurrent access to object scanning in AWS S3 buckets.

Features

S3workers provides faster list and delete operations on S3 buckets by opening up simultaneous connections to issue distinct sets of shared prefix queries. Effectively, this splits up the query space into 36 independent queries (26 alpha and 10 numeric prefixes). For example, a request to list all objects in the myfancy/ bucket would result in concurrent list queries to S3 for everything from myfancy/a... through myfancy/b... and everything from myfancy/0... through myfancy/9..., all at the same time, reporting and collating the results locally.

Selection

The default output of s3workers is to simply list (or delete) all objects found at the prefix requested. However, often it is advantageous to restrict the output to only those matching certain criteria. The --select option provides the ability for evaluating matches using any normal Python operators or builtins against one or more of the following variables provided to the selector for each object found:

  • name: The full S3 key name, everything except the bucket name (string)

  • size: The number of bytes as used by the S3 object (integer).

  • md5: The MD5 hash of the S3 object (string).

  • last_modified: The timestamp indicating the last time the S3 object was changed (string).

Reduction

In cases where aggregation of some kind is desired, s3workers provides the ability to execute reduction logic against an accumulator value. For example, to produce a sum of the size of all selected S3 objects or to even group the size according to MD5 values. See the usage output for examples. In all cases, the same variables provided by selection are also provided when reducing.

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

History

0.3.0 (2017-01-01)

  • Refactor/reorg code for usability/readability; add docs; add tests.

0.2.0 (2016-12-30)

  • Minor fixes, adding docs, using common logging options.

0.1.0 (2016-12-28)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

s3workers-0.3.0.tar.gz (17.9 kB view hashes)

Uploaded Source

Built Distribution

s3workers-0.3.0-py2.py3-none-any.whl (12.0 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page