DM-51011: Enhance kernel execution handling#121
Merged
jonathansick merged 7 commits intomainfrom May 22, 2025
Merged
Conversation
The updated rsp-jupyter-extensions's execution handler now accepts an X-Kernel-Name header to suggest the kernel to nbconvert. We can finally pass the kernel_name argument through to the /execution endpoint!
With Annotated, we should set the default this way rather than through The kernel name is lowercase, rather than the upper case display name.
6738d26 to
8093ea4
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Noteburst now sets the
X-Kernel-Nameheader in the notebook execution request with the/rubin/executionendpoint to the JupyterLab server. This fixes a long-standing issue where the kernel name specified by the user in thePOST /noteburst/v1/notebookrequest was not being used by the JupyterLab server. This caused the notebook to execute with the default kernel (which may bepython3rather thanlsst), or with the kernel named by thekernelspecmetadata in the notebook.Related to lsst-sqre/rsp-jupyter-extensions#48