Skip to content

Commit d28fd91

Browse files
authored
Modify /query call when pointing at CromIAM (#576)
1 parent 19761a5 commit d28fd91

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Job Manager Change Log
22

3+
## v0.5.9 Release Notes
4+
5+
### Modified query to backend when it's going to a CromIAM instead of a Cromwell
6+
37
## v0.5.8 Release Notes
48

59
### Added events to timing diagram

servers/cromwell/jobs/controllers/jobs_controller.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -312,9 +312,11 @@ def query_jobs(body, **kwargs):
312312
offset = page_tokens.decode_offset(query.page_token)
313313
page = page_from_offset(offset, query_page_size)
314314

315+
has_auth = headers is not None
316+
315317
response = requests.post(
316318
_get_base_url() + '/query',
317-
json=cromwell_query_params(query, page, query_page_size),
319+
json=cromwell_query_params(query, page, query_page_size, has_auth),
318320
auth=auth,
319321
headers=headers)
320322

@@ -356,7 +358,7 @@ def page_from_offset(offset, page_size):
356358
return 1 + (offset / page_size)
357359

358360

359-
def cromwell_query_params(query, page, page_size):
361+
def cromwell_query_params(query, page, page_size, has_auth):
360362
query_params = []
361363
if query.start:
362364
start = datetime.strftime(query.start, '%Y-%m-%dT%H:%M:%S.%fZ')
@@ -385,7 +387,13 @@ def cromwell_query_params(query, page, page_size):
385387
query_params.append({'page': str(page)})
386388
query_params.append({'additionalQueryResultFields': 'parentWorkflowId'})
387389
query_params.append({'additionalQueryResultFields': 'labels'})
388-
query_params.append({'includeSubworkflows': 'false'})
390+
391+
# If the query request is passing along an auth header, that means the API
392+
# is sending requests to a CromIAM, not a Cromwell. CromIAM can't retrieve
393+
# subworkflows, so it's not necessary to the query (and slows things down
394+
# significantly)
395+
if not has_auth:
396+
query_params.append({'includeSubworkflows': 'false'})
389397
if query.extensions and query.extensions.hide_archived:
390398
query_params.append({'excludeLabelAnd': 'flag:archive'})
391399
return query_params

servers/cromwell/jobs/test/test_jobs_controller.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ def _request_callback(request, context):
643643
def test_empty_cromwell_query_params(self):
644644
query = QueryJobsRequest()
645645
self.assertEqual(
646-
sorted(jobs_controller.cromwell_query_params(query, 1, 64)),
646+
sorted(jobs_controller.cromwell_query_params(query, 1, 64, False)),
647647
sorted([{
648648
'page': '1'
649649
}, {
@@ -694,7 +694,8 @@ def test_cromwell_query_params(self):
694694
query_params.extend([{'status': s} for s in query.status])
695695
self.assertItemsEqual(
696696
sorted(query_params),
697-
sorted(jobs_controller.cromwell_query_params(query, 23, 100)))
697+
sorted(
698+
jobs_controller.cromwell_query_params(query, 23, 100, False)))
698699

699700
def test_format_job(self):
700701
time = '2017-10-27T18:04:47.271Z'

0 commit comments

Comments
 (0)