forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.py
executable file
·86 lines (69 loc) · 2.84 KB
/
update.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
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env python3
# Copyright 2017 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
DUMP = 'dump.txt'
THREADS = 32
MAX_BAD_RECORDS = 1000
DAYS_OLD = 1.9
DAY = 1
WEEK = 7
MONTH = 30
SUB_PATH = os.environ.get('SUBSCRIPTION_PATH')
def print_dump(file):
if os.path.exists(file):
with open(file, "r") as fp:
output = fp.read()
os.remove(file)
print(output)
else:
print(f'unable to find dump file: {file}')
def call(cmd):
print('+', cmd)
status = os.system(cmd)
if status:
raise OSError('invocation failed')
def main():
if SUB_PATH is None:
raise Exception('Env var "SUBSCRIPTION_PATH" must be set, see deployment*.yaml')
call(f'time python3 make_db.py --buckets buckets.yaml --junit --threads {THREADS}')
bq_cmd = f'bq load --source_format=NEWLINE_DELIMITED_JSON --max_bad_records={MAX_BAD_RECORDS}'
mj_cmd = 'pypy3 make_json.py'
mj_ext = ''
bq_ext = ''
try:
call(f'{mj_cmd} --days 1 --assert-oldest {DAYS_OLD}')
except OSError:
# cycle daily/weekly tables
bq_ext = ' --replace'
mj_ext = ' --reset-emitted'
if os.getenv('DEPLOYMENT', 'staging') == "prod":
call(f'{mj_cmd} {mj_ext} --days {DAY} | pv | gzip > build_day.json.gz')
call(f'{bq_cmd} {bq_ext} k8s-gubernator:build.day build_day.json.gz schema.json')
call(f'{mj_cmd} {mj_ext} --days {WEEK} | pv | gzip > build_week.json.gz')
call(f'{bq_cmd} {bq_ext} k8s-gubernator:build.week build_week.json.gz schema.json')
# TODO: (MushuEE) #20024, remove 30 day limit once issue with all uploads is found
call(f'{mj_cmd} --days {MONTH} | pv | gzip > build_all.json.gz')
call(f'{bq_cmd} k8s-gubernator:build.all build_all.json.gz schema.json')
call(f'python3 stream.py --poll {SUB_PATH} ' \
'--dataset k8s-gubernator:build --tables all:{MONTH} day:{DAY} week:{WEEK} --stop_at=1')
else:
call(f'{mj_cmd} | pv | gzip > build_staging.json.gz')
call(f'{bq_cmd} k8s-gubernator:build.staging build_staging.json.gz schema.json')
call(f'python3 stream.py --poll {SUB_PATH} ' \
'--dataset k8s-gubernator:build --tables staging:0 --stop_at=1')
if __name__ == '__main__':
os.chdir(os.path.dirname(__file__))
os.environ['TZ'] = 'America/Los_Angeles'
main()