Merge pull request #7605 from sreecha/perf-fix-ga

Add clientSuccess and serverSuccess to BQ schema
pull/7681/head
Nicolas Noble 8 years ago committed by GitHub
commit aa0ac69794
  1. 2
      tools/run_tests/performance/bq_upload_result.py
  2. 10
      tools/run_tests/performance/scenario_result_schema.json

@ -118,6 +118,8 @@ def _flatten_result_inplace(scenario_result):
for stats in scenario_result['clientStats']:
stats['latencies'] = json.dumps(stats['latencies'])
scenario_result['serverCores'] = json.dumps(scenario_result['serverCores'])
scenario_result['clientSuccess'] = json.dumps(scenario_result['clientSuccess'])
scenario_result['serverSuccess'] = json.dumps(scenario_result['serverSuccess'])
def _populate_metadata_inplace(scenario_result):

@ -198,5 +198,15 @@
"mode": "NULLABLE"
}
]
},
{
"name": "clientSuccess",
"type": "STRING",
"mode": "NULLABLE"
},
{
"name": "serverSuccess",
"type": "STRING",
"mode": "NULLABLE"
}
]

Loading…
Cancel
Save