ClickHouse/benchmark/athena/run.sh
Alexey Milovidov e493c46fdd Some results
2022-07-04 15:12:12 +02:00

10 lines
306 B
Bash
Executable File

#!/bin/bash
TRIES=3
cat queries.sql | while read query; do
for i in $(seq 1 $TRIES); do
aws athena --output json start-query-execution --query-execution-context 'Database=test' --result-configuration "OutputLocation=${OUTPUT}" --query-string "${query}" | jq '.QueryExecutionId'
done
done