|
1 | 1 | # Sandbox persistence
|
2 | 2 |
|
3 |
| -We're working on a feature that will allow you to persist sandboxes between runs. |
| 3 | +<Note> |
| 4 | +Sandbox persistence is currently in beta: |
| 5 | +1. [Reach out to us](/docs/support) to get access to the beta. |
| 6 | +1. You need to install the [beta version of the SDKs](#installing-the-beta-version-of-the-sdks). |
| 7 | +1. Consider [some limitations](#limitations-while-in-beta). |
| 8 | +1. The persistence is free for all users during the beta. |
| 9 | +</Note> |
4 | 10 |
|
5 |
| -In the meantime, you can mount cloud storage like Amazon's S3, Google Cloud Storage, or Cloudflare's R2 to the sandbox's filesystem. |
| 11 | +The sandbox persistence allows you to pause your sandbox and resume it later from the same state it was in when you paused it. |
6 | 12 |
|
7 |
| -**Prerequisites** |
8 |
| -- Famil |
| 13 | +This includes not only state of the sandbox's filesystem but also the sandbox's memory. This means all running processes, loaded variables, data, etc. |
9 | 14 |
|
| 15 | +## 1. Installing the beta version of the SDKs |
| 16 | +To use the sandbox persistence, you need to install the beta version of the SDKs. |
10 | 17 |
|
| 18 | +<CodeGroup> |
| 19 | +```bash {{ language: 'js' }} |
| 20 | +npm i e2b@beta |
| 21 | +``` |
11 | 22 |
|
12 |
| -## Amazon S3 |
| 23 | +```bash {{ language: 'python' }} |
| 24 | +# Install the latest beta version of the SDK on PyPi |
| 25 | +# https://pypi.org/project/e2b/#history |
| 26 | +pip install e2b-code-interpreter==1.1.0.b17 |
| 27 | +``` |
| 28 | +</CodeGroup> |
13 | 29 |
|
14 |
| -## Google Cloud Storage |
15 | 30 |
|
16 |
| -## Cloudflare R2 |
| 31 | +## 2. Pausing sandbox |
| 32 | +When you pause a sandbox, both the sandbox's filesystem and memory state will be saved. This includes all the files in the sandbox's filesystem and all the running processes, loaded variables, data, etc. |
| 33 | + |
| 34 | +<CodeGroup> |
| 35 | +```js |
| 36 | +import { Sandbox } from 'e2b' |
| 37 | +// or use Code Interpreter: https://github.com/e2b-dev/code-interpreter |
| 38 | +// import { Sandbox } from '@e2b/code-interpreter' |
| 39 | +// |
| 40 | +// or use Desktop: https://github.com/e2b-dev/desktop |
| 41 | +// import { Sandbox } from '@e2b/desktop' |
| 42 | + |
| 43 | +const sbx = await Sandbox.create() |
| 44 | +console.log('Sandbox created', sbx.sandboxId) |
| 45 | + |
| 46 | +// Pause the sandbox |
| 47 | +// You can save the sandbox ID in your database |
| 48 | +// to resume the sandbox later |
| 49 | +const sandboxId = await sbx.pause() // $HighlightLine |
| 50 | +console.log('Sandbox paused', sandboxId) // $HighlightLine |
| 51 | +``` |
| 52 | +```python |
| 53 | +from e2b import Sandbox |
| 54 | +# or use Code Interpreter: https://github.com/e2b-dev/code-interpreter |
| 55 | +# from e2b_code_interpreter import Sandbox |
| 56 | +# |
| 57 | +# or use Desktop: https://github.com/e2b-dev/desktop |
| 58 | +# from e2b_desktop import Sandbox |
| 59 | + |
| 60 | +sbx = Sandbox() |
| 61 | +print('Sandbox created', sbx.sandbox_id) |
| 62 | + |
| 63 | +# Pause the sandbox |
| 64 | +# You can save the sandbox ID in your database |
| 65 | +# to resume the sandbox later |
| 66 | +sandbox_id = sbx.pause() # $HighlightLine |
| 67 | +print('Sandbox paused', sandbox_id) # $HighlightLine |
| 68 | +``` |
| 69 | +</CodeGroup> |
| 70 | + |
| 71 | + |
| 72 | +## 3. Resuming sandbox |
| 73 | +When you resume a sandbox, it will be in the same state it was in when you paused it. |
| 74 | +This means that all the files in the sandbox's filesystem will be restored and all the running processes, loaded variables, data, etc. will be restored. |
| 75 | + |
| 76 | +<CodeGroup> |
| 77 | +```js |
| 78 | +import { Sandbox } from 'e2b' |
| 79 | +// or use Code Interpreter: https://github.com/e2b-dev/code-interpreter |
| 80 | +// import { Sandbox } from '@e2b/code-interpreter' |
| 81 | +// |
| 82 | +// or use Desktop: https://github.com/e2b-dev/desktop |
| 83 | +// import { Sandbox } from '@e2b/desktop' |
| 84 | + |
| 85 | +const sbx = await Sandbox.create() |
| 86 | +console.log('Sandbox created', sbx.sandboxId) |
| 87 | + |
| 88 | +// Pause the sandbox |
| 89 | +// You can save the sandbox ID in your database |
| 90 | +// to resume the sandbox later |
| 91 | +const sandboxId = await sbx.pause() |
| 92 | +console.log('Sandbox paused', sandboxId) |
| 93 | + |
| 94 | +// Resume the sandbox from the same state |
| 95 | +const sameSbx = await Sandbox.resume(sandboxId) // $HighlightLine |
| 96 | +console.log('Sandbox resumed', sameSbx.sandboxId) // $HighlightLine |
| 97 | +``` |
| 98 | +```python |
| 99 | +from e2b import Sandbox |
| 100 | +# or use Code Interpreter: https://github.com/e2b-dev/code-interpreter |
| 101 | +# from e2b_code_interpreter import Sandbox |
| 102 | +# |
| 103 | +# or use Desktop: https://github.com/e2b-dev/desktop |
| 104 | +# from e2b_desktop import Sandbox |
| 105 | + |
| 106 | +sbx = Sandbox() |
| 107 | +print('Sandbox created', sbx.sandbox_id) |
| 108 | + |
| 109 | +# Pause the sandbox |
| 110 | +# You can save the sandbox ID in your database |
| 111 | +# to resume the sandbox later |
| 112 | +sandbox_id = sbx.pause() |
| 113 | +print('Sandbox paused', sandbox_id) |
| 114 | + |
| 115 | +# Resume the sandbox from the same state |
| 116 | +same_sbx = Sandbox.resume(sandbox_id) # $HighlightLine |
| 117 | +print('Sandbox resumed', same_sbx.sandbox_id) # $HighlightLine |
| 118 | +``` |
| 119 | +</CodeGroup> |
| 120 | + |
| 121 | +## Sandbox's timeout |
| 122 | +When you resume a sandbox, the sandbox's timeout is reset to the default timeout of an E2B sandbox - 5 minutes. |
| 123 | + |
| 124 | + |
| 125 | +You can pass a custom timeout to the `Sandbox.resume()` method like this: |
| 126 | + |
| 127 | +<CodeGroup> |
| 128 | +```js |
| 129 | +import { Sandbox } from 'e2b' |
| 130 | + |
| 131 | +const sbx = await Sandbox.resume(sandboxId, { timeoutMs: 60 * 1000 }) // 60 seconds |
| 132 | +``` |
| 133 | +```python |
| 134 | +from e2b import Sandbox |
| 135 | + |
| 136 | +sbx = Sandbox.resume(sandbox_id, timeout=60) # 60 seconds |
| 137 | +``` |
| 138 | +</CodeGroup> |
| 139 | + |
| 140 | +## Network |
| 141 | +If you have a service (for example a server) running inside your sandbox and you pause the sandbox, the service won't be accessible from the outside and all the clients will be disconnected. |
| 142 | +If you resume the sandbox, the service will be accessible again but you need to connect clients again. |
| 143 | + |
| 144 | + |
| 145 | +## Limitations while in beta |
| 146 | +- It takes about 4 seconds per 1 GB RAM to pause the sandbox |
| 147 | +- It takes about 1 second to resume the sandbox |
| 148 | +- Sandbox can be paused up to 30 days |
0 commit comments