Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Troubleshooting: Notes on Jinja2 and Startup config logs #735

Merged
merged 15 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from 11 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
141 changes: 140 additions & 1 deletion src/user-guide/troubleshooting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,28 @@ for debugging some specific issues:
These files can allow you to see how the configuration was changed between
restarts and reloads.

Each time a workflow is

* Played for the first time
* Played from stopped
* Reloaded

wxtim marked this conversation as resolved.
Show resolved Hide resolved
the configuration used is recorded in a file in ``log/config``.
This provides a series of snapshots of the configuration.
These files are named:

``<LOG FILE NUMBER>-<EVENT>-<RESTART NUMBER>``.
wxtim marked this conversation as resolved.
Show resolved Hide resolved

If for example we did:

.. code-block:: console

# Command # File created
cylc play workflow # 01-start-01.cylc
cylc vr workflow # 02-reload-01.cylc
cylc stop workflow
cylc play workflow # 03-restart-02.cylc


Shell Login/Profile Files
-------------------------
Expand Down Expand Up @@ -219,7 +241,7 @@ To find out more, see the ``job.err`` file.
.. note::

To ensure Cylc jobs fail when they are supposed to, Cylc configures Bash
to be a bit stricter than it is by default by running ``set -euo pipefail``.
to be stricter than it is by default by running ``set -euo pipefail``.

.. cylc-scope:: flow.cylc[runtime][<namespace>]

Expand All @@ -229,6 +251,11 @@ To find out more, see the ``job.err`` file.

.. cylc-scope::

.. note::
wxtim marked this conversation as resolved.
Show resolved Hide resolved

One particularly common issue when developing a workflow is failure
to make a script executable. Use ``ls -l`` to check.

If you're struggling to track down the error, you might want to put the
workflow into debug mode::

Expand Down Expand Up @@ -470,6 +497,118 @@ environments. If you encounter this issue in combination with containers,
please let us know.


Debugging Workflow Configurations
---------------------------------

Cylc Debugging Utilites
^^^^^^^^^^^^^^^^^^^^^^^
wxtim marked this conversation as resolved.
Show resolved Hide resolved

.. seealso::

:ref:`user-guide.cheat_sheet`


Cylc comes with a number of utilies designed to allow inspection of
wxtim marked this conversation as resolved.
Show resolved Hide resolved
workflows:

``cylc view``
Prints workflow configurations before full parsing by Cylc. This
can include :ref:`Jinja2 <troubleshooting.jinja2>` (use ``-j``)
or Empy template processing.

Include files can be inlined (use ``-i``).

``cylc config``
Prints workflow configuration after Cylc has parsed the runtime
configuration.

It is useful because it shows you how inheritance is expanded -
for example:
wxtim marked this conversation as resolved.
Show resolved Hide resolved

.. code-block:: cylc

[runtime]
[[root]]
execution time limit = PT5S
[[FAMILY]]
pre-script = sleep 15
[[foo, bar]]
script = echo 'Hello'
[[bar]]
inherit = FAMILY
post-script = echo 'World'

would be shown as (revealing in this example why task ``bar``
always fails):

.. code-block:: cylc

[runtime]
[[root]]
execution time limit = PT5S
[[FAMILY]]
execution time limit = PT5S
pre-script = sleep 15
[[foo]]
execution time limit = PT5S
script = echo 'Hello'
[[bar]]
execution time limit = PT5S
pre-script = sleep 15
script = echo 'Hello'
inherit = FAMILY
post-script = echo 'World'


``cylc lint``
#. Checks the config against the :ref:`style_guide`.
#. Looks deprecated Cylc 7 configurations and recommends
wxtim marked this conversation as resolved.
Show resolved Hide resolved
Cylc 8 configurations to replace them.

.. seealso::

:ref:`cylc_lint_script`

``cylc validate``

Validate a workflow configuration.
wxtim marked this conversation as resolved.
Show resolved Hide resolved

.. seealso::

:ref:`Validation`

.. _troubleshooting.jinja2:

See what the Jinja2 is doing
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Sometimes understanding what Jinja2 templating is doing
to a workflow configuration can be difficult.
wxtim marked this conversation as resolved.
Show resolved Hide resolved

``cylc view --process`` (or ``-p``) shows you what the
configuration will look like after Jinja2 processing.

For example:

.. code-block::

{% for n in my_function(3) %}
R/1983/P{{n}}Y = cicada_{{n}}[-P{{n}}Y] => cicada_{{n}}
{% endfor %}

is much easier to understand as:

.. code-block:: cylc-graph

R/1983/P2Y = cicada_2[-P2Y] => cicada_2
R/1983/P3Y = cicada_3[-P3Y] => cicada_3
R/1983/P5Y = cicada_5[-P5Y] => cicada_5

If you have installed and played a workflow
(even using ``play --pause``) this processed content
is shown in ``log/config/flow-processed.cylc``.


Getting Help
------------

Expand Down
2 changes: 2 additions & 0 deletions src/workflow-design-guide/style-guide.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.. _style_guide:

Style Guidelines
================

Expand Down
Loading