An IPython Kernel that automatically saves and restores Jupyter Notebook execution states.
Project description
ElasticKernel
Never lose your Jupyter variables to a kernel restart again.
ElasticKernel is a custom IPython kernel that automatically checkpoints your notebook's execution state and restores it after a restart or crash โ no manual pickle.dump required. Pick up exactly where you left off.
๐ฏ๐ต ๆฅๆฌ่ช็ใฏ README.ja.md ใๅ็ งใใฆใใ ใใใ
Demo
The same workflow in both clips: define a variable a = 1, then restart the kernel. The difference is what happens next.
Standard kernel (ipykernel) |
ElasticKernel |
|---|---|
โ After the restart, a is gone โ %whos reports "Interactive namespace is empty." |
โ
After the restart, a is automatically restored โ %whos still shows aย ย intย ย 1. |
If the videos don't play inline, click them to view: ipykernel ยท ElasticKernel.
Why ElasticKernel?
Every Jupyter user has been there: a long computation finishes, then an accidental kernel
restart (or an out-of-memory crash) wipes every variable in your session. The usual
workaround is scattering pickle.dump / joblib.dump calls everywhere and remembering to
reload them by hand.
ElasticKernel removes that chore entirely:
- ๐ Automatic state recovery โ your variables survive kernel restarts and shutdowns, with zero changes to your code.
- ๐ง Dependency-aware โ tracks how cells and variables depend on one another to restore a consistent state.
- โก Cost-optimized checkpoints โ for each variable it decides whether to serialize it or recompute it on restore, based on serialization size vs. recomputation cost (a min-cut optimization).
- ๐ช Drop-in โ just pick the
Python 3 (ElasticKernel)kernel; the rest of your workflow is unchanged.
Installation & Usage
Local
-
Install the package:
$ pip install elastic-kernel
-
Install the kernel:
$ elastic-kernel install Elastic Kernel installed from: /path/to/elastic_kernel
-
Verify the kernel is installed:
$ jupyter kernelspec list Available kernels: elastic_kernel /path/to/Jupyter/kernels/elastic_kernel
-
Launch JupyterLab:
$ jupyter lab --ip=0.0.0.0
-
Open JupyterLab in your browser.
-
Select the Python 3 (ElasticKernel) kernel.
Docker
-
Pull the image:
docker pull ghcr.io/mryutaro/elastickernel
-
Start a container:
docker run -p 8888:8888 ghcr.io/mryutaro/elastickernel
-
Open JupyterLab in your browser.
-
Select the Python 3 (ElasticKernel) kernel.
Supported versions
ElasticKernel is tested on every push and pull request against a CI matrix of Python
versions. The checkpoint save โ restore round trip (record_event โ checkpoint โ load_checkpoint) is verified on each of them.
| Component | Verified versions |
|---|---|
| Python | 3.9, 3.10, 3.11, 3.12, 3.13 |
| ipykernel / jupyterlab | latest release compatible with each Python above (resolved by uv sync) |
Python 3.8 reached end-of-life in October 2024 and is no longer tested. The version matrix lives in
.github/workflows/test.yml.
Supported libraries
ElasticKernel can restore a checkpointed object two ways, and a cost optimizer (min-cut) picks one per object at checkpoint time โ neither is merely a fallback:
- Migrate โ serialize the object with dill and reload it.
- Recompute โ re-run the cell that produced it.
CI verifies several representative object types per library below โ a library exposes many types, so this is a sample rather than a whole-library guarantee โ and reports whether each restore path reproduces each one.
Legend:
- โ โ restored correctly via this path.
- โ โ not serializable, so the Migrate path does not apply (ElasticKernel uses Recompute instead).
- โ โ failed: the object could not be restored, or it is a known limitation.
The table is generated by scripts/library_coverage.py and
kept in sync by the library-coverage workflow.
| Library | Object | Migrate | Recompute | Verified version |
|---|---|---|---|---|
| numpy | ndarray |
โ | โ | 2.3.4 |
structured array |
โ | โ | 2.3.4 | |
masked array |
โ | โ | 2.3.4 | |
datetime64 array |
โ | โ | 2.3.4 | |
| pandas | DataFrame |
โ | โ | 3.0.3 |
Series |
โ | โ | 3.0.3 | |
Series (category) |
โ | โ | 3.0.3 | |
DataFrame (DatetimeIndex) |
โ | โ | 3.0.3 | |
| scipy | csr_matrix (sparse) |
โ | โ | 1.17.1 |
csc_matrix (sparse) |
โ | โ | 1.17.1 | |
stats frozen distribution |
โ | โ | 1.17.1 | |
| scikit-learn | LinearRegression (fitted) |
โ | โ | 1.9.0 |
StandardScaler (fitted) |
โ | โ | 1.9.0 | |
RandomForestClassifier (fitted) |
โ | โ | 1.9.0 | |
| matplotlib | Figure (line plot) |
โ | โ | 3.11.0 |
Figure (imshow) |
โ | โ | 3.11.0 | |
| seaborn | FacetGrid |
โ | โ | 0.13.2 |
Axes (scatterplot) |
โ | โ | 0.13.2 | |
| opencv (cv2) | ndarray (grayscale image) |
โ | โ | 4.13.0.92 |
ndarray (color image) |
โ | โ | 4.13.0.92 | |
| requests | Response |
โ | โ | 2.32.5 |
Session |
โ | โ | 2.32.5 |
How It Works
ElasticKernel extends the IPython kernel to observe each cell execution. As you run cells it builds a dependency graph of variables and the cell executions that produce them. When the kernel shuts down or restarts, it profiles serialization speed, runs a cost optimizer to split variables into a migrate set (serialized to disk) and a recompute set (regenerated by re-running cells), and writes a checkpoint. On the next start it loads the checkpoint, injects the migrated variables back into your namespace, and recomputes the rest.
Documentation
- On-demand checkpoint/restore API: docs/CHECKPOINT_API.md โ trigger checkpoint/restore at any time from an external orchestrator (REST API)
- Developer guide: docs/DEVELOPERS.md
- ๆฅๆฌ่ช README: README.ja.md
Publication
This project was presented in the following paper. If you use ElasticKernel in your research, please cite:
R. Matsumoto, K. Taniguchi, T. Hayami, K. Takahashi, and S. Date. "ElasticHub: A Cost-Efficient JupyterHub Platform via Automated Scaling with Kubernetes on Hybrid Cloud." Proceedings of the 16th International Conference on Cloud Computing and Services Science, pp. 261โ268, 2026. DOI: 10.5220/0014840200004039
@inproceedings{matsumoto2026elastichub,
author = {Matsumoto, R. and Taniguchi, K. and Hayami, T. and Takahashi, K. and Date, S.},
title = {ElasticHub: A Cost-Efficient JupyterHub Platform via Automated Scaling with Kubernetes on Hybrid Cloud},
booktitle = {Proceedings of the 16th International Conference on Cloud Computing and Services Science},
year = {2026},
pages = {261--268},
isbn = {978-989-758-829-7},
issn = {2184-5042},
doi = {10.5220/0014840200004039}
}
Acknowledgments
This project includes code from ElasticNotebook, developed at the University of Illinois. ElasticNotebook is licensed under the Apache License 2.0.
Zhaoheng Li, Pranav Gor, Rahul Prabhu, Hui Yu, Yuzhou Mao, Yongjoo Park. "ElasticNotebook: Enabling Live Migration for Computational Notebooks." Proceedings of the VLDB Endowment, Vol. 17, No. 2, pp. 119-133, 2023.
License
Licensed under the Apache License 2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file elastic_kernel-0.1.1.tar.gz.
File metadata
- Download URL: elastic_kernel-0.1.1.tar.gz
- Upload date:
- Size: 67.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4efe48dec4b5b175238d7d72077f1df89194c0d7b58da3a75eae113a238ac58a
|
|
| MD5 |
2e1487777145811ee7e6b5e6dd16aa14
|
|
| BLAKE2b-256 |
89b917b0d3c47af8411fd90ddd8ba472d67e86030714752fbf60660b13e1390b
|
Provenance
The following attestation bundles were made for elastic_kernel-0.1.1.tar.gz:
Publisher:
publish-to-pypi.yml on MRyutaro/ElasticKernel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
elastic_kernel-0.1.1.tar.gz -
Subject digest:
4efe48dec4b5b175238d7d72077f1df89194c0d7b58da3a75eae113a238ac58a - Sigstore transparency entry: 1847845329
- Sigstore integration time:
-
Permalink:
MRyutaro/ElasticKernel@3cb4916ca3267d7cced729fa792a6ed22e2c2204 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/MRyutaro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@3cb4916ca3267d7cced729fa792a6ed22e2c2204 -
Trigger Event:
push
-
Statement type:
File details
Details for the file elastic_kernel-0.1.1-py3-none-any.whl.
File metadata
- Download URL: elastic_kernel-0.1.1-py3-none-any.whl
- Upload date:
- Size: 62.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac70b7e6e07ecc6daf40aa50d1475c198bde9c076086736f4fe7d0c913a088dc
|
|
| MD5 |
255321e6a58915c83c63e7e24be150ce
|
|
| BLAKE2b-256 |
3e38495febd2228c63dd2cd8047b8034d9a3c4709fd4e331a509871762767c37
|
Provenance
The following attestation bundles were made for elastic_kernel-0.1.1-py3-none-any.whl:
Publisher:
publish-to-pypi.yml on MRyutaro/ElasticKernel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
elastic_kernel-0.1.1-py3-none-any.whl -
Subject digest:
ac70b7e6e07ecc6daf40aa50d1475c198bde9c076086736f4fe7d0c913a088dc - Sigstore transparency entry: 1847845839
- Sigstore integration time:
-
Permalink:
MRyutaro/ElasticKernel@3cb4916ca3267d7cced729fa792a6ed22e2c2204 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/MRyutaro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@3cb4916ca3267d7cced729fa792a6ed22e2c2204 -
Trigger Event:
push
-
Statement type: