-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcopy_to_aws_s3.py
executable file
·73 lines (57 loc) · 1.81 KB
/
copy_to_aws_s3.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python3
import argparse
import os
import subprocess
import sys
sys.dont_write_bytecode = True
AWS_PROFILE = 'sso-main'
PATHS = [
'jre/linux-x86_64.tar.gz',
'jre/win32-AMD64.zip',
'jre/linux-aarch64.tar.gz',
'jre/README.md',
'jre/darwin-arm64.tar.gz',
'jre/darwin-x86_64.tar.gz',
'run.py',
'notebooks/play.ipynb',
'notebooks/energy.parquet.gzip',]
def upload(paths):
for path in paths:
if path not in PATHS:
raise ValueError(f'Path {path} is not in PATHS')
for path in paths:
print(f'Copying {path} to S3...')
ran = subprocess.run([
'aws', 's3',
'cp', path, f's3://questdb/play/{path}',
'--profile', AWS_PROFILE])
if ran.returncode != 0:
print('')
print(f'Failed to upload {path}')
print('If this was due to an expired token, run:')
print(f' aws sso login --profile {AWS_PROFILE}')
sys.exit(1)
print('')
def invalidate_cloudfront(paths):
print('Invalidating CloudFront cache...')
subprocess.run([
'aws', 'cloudfront',
'create-invalidation',
'--distribution-id', os.environ['CLOUDFRONT_DISTRIBUTION_ID'],
'--paths'] + [f'/play/{path}' for path in paths] + [
'--profile', AWS_PROFILE], check=True)
def parse_args():
parser = argparse.ArgumentParser()
parser.add_argument(
'--files', nargs='+', default=PATHS,
help=f'Files to upload to S3, any of: {PATHS!r}')
return parser.parse_args()
def main():
args = parse_args()
if 'CLOUDFRONT_DISTRIBUTION_ID' not in os.environ:
print('CLOUDFRONT_DISTRIBUTION_ID is not set')
sys.exit(1)
upload(args.files)
invalidate_cloudfront(args.files)
if __name__ == '__main__':
main()