Skip to content

Commit

Permalink
Update location of agents
Browse files Browse the repository at this point in the history
  • Loading branch information
charlotte-avery committed Oct 14, 2024
1 parent 6a8f6bf commit f0bd111
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion k8s/job.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down

0 comments on commit f0bd111

Please sign in to comment.