Skip to content

Commit

Permalink
fix(k8s/prepro): reducem pox batch size to 5 to not use more than 1GB…
Browse files Browse the repository at this point in the history
… of memory (#1878)

Use one processing thread to reduce memory consumption
  • Loading branch information
corneliusroemer authored May 11, 2024
1 parent 7e27daf commit 2d73e4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion kubernetes/loculus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ defaultOrganisms:
nextclade_dataset_tag: 2024-04-19--07-50-39Z
genes:
- OPG001
batch_size: 20
batch_size: 5
processing_spec:
total_snps:
function: identity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ def enrich_with_nextclade(
f"--output-all={result_dir}",
f"--input-dataset={dataset_dir}",
f"--output-translations={result_dir}/nextclade.cds_translation.{{cds}}.fasta",
"--jobs=1",
"--",
f"{input_file}",
]
Expand Down

0 comments on commit 2d73e4c

Please sign in to comment.