Last active
March 7, 2024 14:30
-
-
Save yellowcap/c39a10d19d78833b29a2c4828b47b2ea to your computer and use it in GitHub Desktop.
Copy data from S3 to EBS faster
This file contains 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
""" | |
A script to sync S3 data fast to a local folder or EBS store. | |
The script calls aws s3 sync in parallel for subfolders. | |
In addition to parallel sync calls, also increase the concurrent | |
request for each sync call using an ~/.aws/config file | |
[default] | |
s3 = | |
max_concurrent_requests = 20 | |
max_queue_size = 10000 | |
""" | |
import random | |
import subprocess | |
from multiprocessing import Pool | |
bucket = "mybucket" # Bucket name | |
folders = [] # List of S3 keys to sync | |
nr_of_processes = 20 | |
# In this case we want to download the data in random order | |
random.seed(42) | |
random.shuffle(mgrs) | |
def worker(folder): | |
print(f"Doing {folder}") | |
subprocess.run(["aws", "s3", "sync", "--only-show-errors", "--profile", "default", f"s3://{bucket}/{folder}/", f"/localdir/{folder}/"]) | |
print(f"Done {folder}") | |
if __name__ == '__main__': | |
with Pool(nr_of_processes) as p: | |
p.map(worker, folders) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment