s3-algo
High-performance algorithms for batch operations in Amazon S3, on top of rusoto
https://docs.aws.amazon.com/AmazonS3/latest/dev/optimizing-performance-guidelines.html
Currently, uploading multiple files has been the main focus. Listing of files and deletion of prefix is also implemented. Copying files (S3 to S3) is planned.
s3_upload_files
functionThe documentation for UploadConfig
may help illuminate the components of the algorithm.
The currnetly most important aspect of the algorithm revolves around deciding timeout values. That is, how long to wait for a request before trying again.
It is important for performance that the timeout is tight enough.
The main mechanism to this end is the estimation of the upload bandwidth through a running exponential average of the upload speed (on success) of individual files.
Additionally, on each successive retry, the timeout increases by some factor (back-off).
perf_data
Command-line interface for uploading any directory to any bucket and prefix in a locally running S3 service (such as minio
).
Example:
cargo run --example perf_data -- -n 3 ./src test-bucket lala
Prints:
attempts bytes success_ms total_ms MBps MBps est
1 1990 32 32 0.06042 1.00000
1 24943 33 33 0.74043 1.00000
1 2383 29 29 0.08211 1.00000
1 417 13 13 0.03080 1.00000
1 8562 16 16 0.51480 1.00000
total_ms
is the total time including all retries, and success_ms
is the time of only the last attempt.
The distinction between these two is useful in real cases where attempts
is not always 1
.
You can then verify that the upload happened by entering the container. Something like:
$ docker exec -it $(docker ps --filter "ancestor=minio" --format "{{.Names}}") bash
[user@144aff4dae5b ~]$ ls s3/
test-bucket/
[user@144aff4dae5b ~]$ ls s3/test-bucket/
lala
Both tests and examples require that an S3 service such as minio
is running locally at port 9000.
Tests assume that a credentials profile exists - for example in ~/.aws/credentials
:
[testing]
aws_access_key_id = 123456789
aws_secret_access_key = 123456789