diff --git a/README.md b/README.md index 8239f27..55b579a 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ python -m simulation households.parquet history.jsonl BigQuery: ``` -python -m simulation --bigquery "select * from project.prod_domestic_heating.dim_household_agents" history.jsonl +python -m simulation --bigquery "select * from project.prod_domestic_heating.household_agents" history.jsonl ``` ## Analysing the results diff --git a/k8s/job.jsonnet b/k8s/job.jsonnet index c04f785..2797da9 100644 --- a/k8s/job.jsonnet +++ b/k8s/job.jsonnet @@ -17,7 +17,7 @@ local job(name, args_excl_output) = { command: ['python', '-m', 'simulation'], args: args_excl_output + [ '--bigquery', - 'select * from %s.prod_domestic_heating.dim_household_agents where abs(mod(farm_fingerprint(id), 307)) = 1' % std.extVar('PROJECT_ID'), + 'select * from %s.prod_domestic_heating.household_agents where abs(mod(farm_fingerprint(id), 307)) = 1' % std.extVar('PROJECT_ID'), 'gs://%s/%s/{uuid}/output.jsonl.gz' % [std.extVar('BUCKET_NAME'), name], ], env: [