You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The notebook polar_plotting.ipynb contains a cell responsible for plotting maps in polar projection. Unfortunately, when running the markdown-general.yml workflow, this notebook encounters an issue. Although the workflow appears to execute successfully, an error can be observed in the log:
[NbConvertApp] ERROR | Kernel died while waiting for execute reply.
...
nbclient.exceptions.DeadKernelError: Kernel died
This problem occurs within the notebook_to_md.sh script on the following line:
It's worth noting that the --allow-errors option prevents workflow failure due to errors in the notebook. However, because the notebooks are executed alphabetically, any notebooks following polar_plotting.ipynb won't run if an error occurs in this notebook.
Attempts to address the issue include:
Adding --log-level=DEBUG --ExecutePreprocessor.timeout=600 to the nbconvert command to visualize notebook outputs and extend the cell execution time.
Manually installing jupyter, notebook, and ipykernel within the markdown-general.yml file:
Despite these efforts, a solution hasn't been found. As a workaround, the plotting section of the notebooks has been commented out, and a configuration gallery for polar plotting has been created. Images of the maps are manually added to the Markdown documentation.
Justification
User Workflow
Anything else?
The text was updated successfully, but these errors were encountered:
Is there an existing request for this?
Desired Feature
The notebook
polar_plotting.ipynb
contains a cell responsible for plotting maps in polar projection. Unfortunately, when running themarkdown-general.yml
workflow, this notebook encounters an issue. Although the workflow appears to execute successfully, an error can be observed in the log:This problem occurs within the
notebook_to_md.sh
script on the following line:It's worth noting that the
--allow-errors
option prevents workflow failure due to errors in the notebook. However, because the notebooks are executed alphabetically, any notebooks followingpolar_plotting.ipynb
won't run if an error occurs in this notebook.Attempts to address the issue include:
Adding
--log-level=DEBUG --ExecutePreprocessor.timeout=600
to thenbconvert
command to visualize notebook outputs and extend the cell execution time.Manually installing
jupyter
,notebook
, andipykernel
within themarkdown-general.yml
file:Despite these efforts, a solution hasn't been found. As a workaround, the plotting section of the notebooks has been commented out, and a configuration gallery for polar plotting has been created. Images of the maps are manually added to the Markdown documentation.
Justification
User Workflow
Anything else?
The text was updated successfully, but these errors were encountered: