Skip to content

Commit

Permalink
Increased number of workers and fixed query result for merge case
Browse files Browse the repository at this point in the history
  • Loading branch information
bashir2 committed Mar 8, 2018
1 parent f623e1a commit 5ddde12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"input_pattern": "gs://genomics-public-data/platinum-genomes/vcf/*.vcf",
"runner": "DataflowRunner",
"worker_machine_type": "n1-standard-16",
"max_num_workers": "5",
"max_num_workers": "20",
"assertion_configs": [
{
"query": ["NUM_ROWS_QUERY"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
"runner": "DataflowRunner",
"variant_merge_strategy": "MOVE_TO_CALLS",
"worker_machine_type": "n1-standard-16",
"max_num_workers": "10",
"max_num_workers": "20",
"assertion_configs": [
{
"query": ["NUM_ROWS_QUERY"],
"expected_result": {"num_rows": 309551691}
"expected_result": {"num_rows": 261285806}
},
{
"query": ["SUM_START_QUERY"],
"expected_result": {"sum_start": 24107891293483855}
"expected_result": {"sum_start": 20441297971132809}
},
{
"query": ["SUM_END_QUERY"],
"expected_result": {"sum_end": 24107908471506508}
"expected_result": {"sum_end": 20441314888077665}
}
]
}

0 comments on commit 5ddde12

Please sign in to comment.