Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/source/usage/add-site.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@ will overwrite CSET's flow.cylc file. If you need to make additional changes
please `open an issue on the CSET GitHub repository`_, so we can ensure your use
case is supported directly in CSET.

.. tip::

Recipes are baked in parallel with a parallel job per detected CPU. If this
is detected incorrectly, or you want to undersubscribe nodes for additional
memory headroom, you may set the number of parallel jobs with the
``BUNCH_POOL_SIZE`` environment variable.

Add rose edit metadata entry for site
-------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/CSET/cset_workflow/app/bake_recipes/bin/baker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fi
export RECIPE_DIR

# Determine parallelism.
parallelism="$(nproc)"
parallelism="${BUNCH_POOL_SIZE:-$(nproc)}"
if [ "$CYLC_TASK_SUBMIT_NUMBER" -gt 1 ]; then
# This is a retry; enable DEBUG logging.
export LOGLEVEL="DEBUG"
Expand Down
Loading