Open Leoniak713 opened 5 years ago
Sending a job with Query(query).execute(priority='low') results in job being executed with interactive priority (as shown by BQ UI). The documentation also says the argument should be 'batch', but in the code it's batch = priority == 'low'
Query(query).execute(priority='low')
'batch'
batch = priority == 'low'
Sending a job with
Query(query).execute(priority='low')
results in job being executed with interactive priority (as shown by BQ UI). The documentation also says the argument should be'batch'
, but in the code it'sbatch = priority == 'low'