forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 1
/
stream.py
executable file
·310 lines (259 loc) · 10.2 KB
/
stream.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
#!/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.
"""Receive push events for new builds and upload rows to BigQuery."""
import argparse
import json
import os
import pprint
import socket
import sys
import traceback
import time
import multiprocessing.pool
try:
from google.cloud import bigquery
from google.cloud import pubsub_v1
import google.cloud.exceptions
except ImportError:
print('WARNING: unable to load google cloud (test environment?)')
traceback.print_exc()
import model
import make_db
import make_json
def process_changes(results):
"""Split GCS change events into trivial ack_ids and builds to further process."""
ack_ids = [] # pubsub rec_message ids to acknowledge
todo = [] # (id, job, build) of builds to grab
# process results, find finished builds to process
for rec_message in results:
if rec_message.message.attributes['eventType'] != 'OBJECT_FINALIZE':
ack_ids.append(rec_message.ack_id)
continue
obj = rec_message.message.attributes['objectId']
if not obj.endswith('/finished.json'):
ack_ids.append(rec_message.ack_id)
continue
job, build = obj[:-len('/finished.json')].rsplit('/', 1)
job = 'gs://%s/%s' % (rec_message.message.attributes['bucketId'], job)
todo.append((rec_message.ack_id, job, build))
return ack_ids, todo
def get_started_finished(gcs_client, db, todo):
"""Download started/finished.json from build dirs in todo."""
ack_ids = []
build_dirs = []
pool = multiprocessing.pool.ThreadPool(16)
try:
for ack_id, (build_dir, started, finished) in pool.imap_unordered(
lambda ack_id_job_build: (ack_id_job_build[0], gcs_client.get_started_finished(
ack_id_job_build[1], ack_id_job_build[2])),
todo):
if finished:
if not db.insert_build(build_dir, started, finished):
print('build dir already present in db: ', build_dir)
start = time.localtime(started.get('timestamp', 0) if started else 0)
print((build_dir, bool(started), bool(finished),
time.strftime('%F %T %Z', start),
finished and finished.get('result')))
build_dirs.append(build_dir)
ack_ids.append(ack_id)
else:
print('finished.json missing?', build_dir, started, finished)
finally:
pool.close()
db.commit()
return ack_ids, build_dirs
def retry(func, *args, **kwargs):
"""Run a function with arguments, retrying on server errors. """
# pylint: disable=no-member
for attempt in range(20):
try:
return func(*args, **kwargs)
except (socket.error, google.cloud.exceptions.ServerError):
# retry with exponential backoff
traceback.print_exc()
time.sleep(1.4 ** attempt)
return func(*args, **kwargs) # one last attempt
def insert_data(bq_client, table, rows_iter):
"""Upload rows from rows_iter into bigquery table table.
rows_iter should return a series of (row_id, row dictionary) tuples.
The row dictionary must match the table's schema.
Args:
bq_client: Client connection to BigQuery
table: bigquery.Table object that points to a specific table
rows_iter: row_id, dict representing a make_json.Build
Returns the row_ids that were inserted.
"""
emitted, rows = [], []
for row_id, build in rows_iter:
emitted.append(row_id)
rows.append(build)
if not rows: # nothing to do
return []
# Insert rows with row_ids into table, retrying as necessary.
errors = retry(bq_client.insert_rows, table, rows, skip_invalid_rows=True)
if not errors:
print('Loaded {} builds into {}'.format(len(rows), table.friendly_name))
else:
print('Errors:')
pprint.pprint(errors)
pprint.pprint(table.schema)
return emitted
def main(
db,
subscriber,
subscription_path,
bq_client,
tables,
client_class=make_db.GCSClient,
stop=None,
):
# pylint: disable=too-many-locals
gcs_client = client_class('', {})
if stop is None:
stop = lambda: False
results = [0] * 1000 # don't sleep on first loop
while not stop():
print()
if len(results) < 10 and client_class is make_db.GCSClient:
time.sleep(5) # slow down!
print('====', time.strftime("%F %T %Z"), '=' * 40)
results = retry(subscriber.pull, subscription=subscription_path, max_messages=1000)
results = list(results.received_messages)
start = time.time()
while time.time() < start + 7:
results_more = list(subscriber.pull(
subscription=subscription_path,
max_messages=1000,
return_immediately=True).received_messages)
if not results_more:
break
results.extend(results_more)
print('PULLED', len(results))
ack_ids, todo = process_changes(results)
if ack_ids:
print('ACK irrelevant', len(ack_ids))
for n in range(0, len(ack_ids), 1000):
retry(
subscriber.acknowledge,
subscription=subscription_path,
ack_ids=ack_ids[n: n + 1000])
if todo:
print('EXTEND-ACK ', len(todo))
# give 3 minutes to grab build details
retry(
subscriber.modify_ack_deadline,
subscription=subscription_path,
ack_ids=[i for i, _j, _b in todo],
ack_deadline_seconds=60*3)
ack_ids, build_dirs = get_started_finished(gcs_client, db, todo)
# notify pubsub queue that we've handled the finished.json messages
if ack_ids:
print('ACK "finished.json"', len(ack_ids))
retry(subscriber.acknowledge, subscription=subscription_path, ack_ids=ack_ids)
# grab junit files for new builds
make_db.download_junit(db, 16, client_class)
# stream new rows to tables
if build_dirs and tables:
for table, incremental_table in tables.values():
builds = db.get_builds_from_paths(build_dirs, incremental_table)
emitted = insert_data(bq_client, table, make_json.make_rows(db, builds))
db.insert_emitted(emitted, incremental_table)
def load_sub(poll):
"""Return the PubSub subscription specified by the /-separated input.
Args:
poll: Follow GCS changes from project/topic/subscription
Ex: kubernetes-jenkins/gcs-changes/kettle
Return:
Subscribed client
"""
subscriber = pubsub_v1.SubscriberClient()
project_id, _, sub = poll.split('/')
subscription_path = f'projects/{project_id}/subscriptions/{sub}'
return subscriber, subscription_path
def load_schema(schemafield):
"""Construct the expected BigQuery schema from files on disk.
Only used for new tables."""
basedir = os.path.dirname(__file__)
schema_json = json.load(open(os.path.join(basedir, 'schema.json')))
def make_field(spec):
spec['field_type'] = spec.pop('type')
if 'fields' in spec:
spec['fields'] = [make_field(f) for f in spec['fields']]
return schemafield(**spec)
return [make_field(s) for s in schema_json]
def load_tables(dataset, tablespecs):
"""Construct a dictionary of BigQuery tables given the input tablespec.
Args:
dataset: bigquery.Dataset
tablespecs: list of strings of "NAME:DAYS", e.g. ["day:1"]
Returns:
client, {name: (bigquery.Table, incremental table name)}
"""
project, dataset_name = dataset.split(':')
bq_client = bigquery.Client(project)
tables = {}
for spec in tablespecs:
table_name, days = spec.split(':')
table_ref = f'{project}.{dataset_name}.{table_name}'
try:
table = bq_client.get_table(table_ref) # pylint: disable=no-member
except google.cloud.exceptions.NotFound:
table = bq_client.create_table(table_ref) # pylint: disable=no-member
table.schema = load_schema(bigquery.schema.SchemaField)
tables[table_name] = (table, make_json.get_table(float(days)))
return bq_client, tables
class StopWhen:
"""A simple object that returns True once when the given hour begins."""
def __init__(self, target, clock=lambda: time.localtime().tm_hour):
self.clock = clock
self.last = self.clock()
self.target = target
def __call__(self):
if os.path.exists('stop'):
return True
now = self.clock()
last = self.last
self.last = now
return now != last and now == self.target
def get_options(argv):
"""Process command line arguments."""
parser = argparse.ArgumentParser()
parser.add_argument(
'--poll',
required=True,
help='Follow GCS changes from project/topic/subscription',
)
parser.add_argument(
'--dataset',
help='BigQuery dataset (e.g. k8s-gubernator:build)'
)
parser.add_argument(
'--tables',
nargs='+',
default=[],
help='Upload rows to table:days [e.g. --tables day:1 week:7 all:0]',
)
parser.add_argument(
'--stop_at',
type=int,
help='Terminate when this hour (0-23) rolls around (in local time).'
)
return parser.parse_args(argv)
if __name__ == '__main__':
OPTIONS = get_options(sys.argv[1:])
main(model.Database(),
*load_sub(OPTIONS.poll),
*load_tables(OPTIONS.dataset, OPTIONS.tables),
stop=StopWhen(OPTIONS.stop_at))