Lately I've noticed that BigQuery is slow on a simple query, single table, without joins. It takes a minute and more to execute the following query on a table with 9000 rows:
SELECT
max(repeatedElement1) as elem1,
max(repeatedElement2) as elem2,
max(repeatedElement3) as elem3,
FROM myTable
WHERE id = '543978b4e4b09bccb70c7473'
Exact query is 507322187707:job_rDMpbbAUjpsGsv-jTxaVJU-gRRg
IIRC, this used to take much less time to execute.