minio / warp

S3 benchmarking tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Need some a minimal example on connecting to anything OTHER than Minio

russfellows opened this issue · comments

While the existing docs are sufficient for testing against Minio, they are non-existent for anything else. How about a very simple example of puts or gets to AWS S3? Although it should be straightforward, numerous errors are preventing this from working.

warp was written primarily for MinIO and it serves that purpose. Everything else is the same just like you would use MinIO you can use the server name to be s3.amazonaws.com.

I don't know what more we can describe here.

warp get --duration=3m --bucket mys3bucket --host=s3.amazonaws.com --access-key=aws-key --secret-key=aws-secret-key

Just this simple.

Thank you. Your example is close, but not correct. We found that you also have to include the region, either with your --region flag, or encoded into the host string. See below.

Warp_working