Created
January 11, 2019 23:08
-
-
Save drumadrian/67486b9bda8608741833cd48b826b4d6 to your computer and use it in GitHub Desktop.
copy and paste the lines below into your PowerShell or Bash prompt for faster AWS S3 sync OR multi-part uploads.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# copy and paste the lines below into your PowerShell or Bash prompt for faster S3 sync OR multi-part uploads | |
aws configure set default.s3.max_concurrent_requests 100 | |
aws configure set default.s3.max_queue_size 20000 | |
aws configure set default.s3.multipart_threshold 64MB | |
aws configure set default.s3.multipart_chunksize 64MB | |
aws configure set default.s3.max_bandwidth 50MB/s | |
aws configure set default.s3.use_accelerate_endpoint true | |
aws configure set default.s3.addressing_style path | |
# copy and paste the lines below into to check your aws shell settings | |
aws configure get default.s3.max_concurrent_requests | |
aws configure get default.s3.max_queue_size | |
aws configure get default.s3.multipart_threshold | |
aws configure get default.s3.multipart_chunksize | |
aws configure get default.s3.max_bandwidth | |
aws configure get default.s3.use_accelerate_endpoint | |
aws configure get default.s3.addressing_style | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment