docs: second part of the archive page, using archives with your own S3 - #753
Open
devin-ai-integration[bot] wants to merge 4 commits into
Open
docs: second part of the archive page, using archives with your own S3#753devin-ai-integration[bot] wants to merge 4 commits into
devin-ai-integration[bot] wants to merge 4 commits into
Conversation
… S3 storage Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
… itself Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
drappier-charles
marked this pull request as ready for review
August 27, 2026 01:43
| "apiVersion": "v0.1.0", | ||
| "imageDevice": "/dev/vda", | ||
| "root": "/", | ||
| "excludes": ["proc", "sys", "dev", "run", "tmp", "mnt", "etc/resolv.conf"], |
Contributor
Author
There was a problem hiding this comment.
🔍 Manifest excludes sample omits hostname/hosts
The sample excludes (Sandboxes/Archive.mdx:160) lists only etc/resolv.conf, while the prose (Sandboxes/Archive.mdx:176) says host-injected identity also covers /etc/hostname and /etc/hosts. Confirm the sample matches the real default exclude set so readers are not misled.
Was this helpful? React with 👍 or 👎 to provide feedback.
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
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.
Summary
The archive page only covered the managed flow (
sandbox.archive()/unarchive()). This adds a second part documenting the sandbox-api surface behind it, so users can write the same archive to a bucket they own and restore it later: backups, cross-workspace or cross-region copies, keeping several archives of one sandbox.New sections under
## Archive to your own storage:.blaxel-archive/manifest.json(with a sample manifest) and.blaxel-archive/processes.json, deletions carried in the manifest rather than as tar members, and what is never archived (memory,/tmp, runtime dirs, host-injected identity, volumes and drives).POST /archive/exportonsandbox.metadata.url, with the option table (url,async,dryRun,saveProcesses,excludes,headers,multipart) and the mk3.0imageDevice: /dev/ukp_rom0note.abortUrlmatters.headers(x-amz-storage-class), andsaveProcesses: falsefor a filesystem-only archive.GET /archive/status, and the fact that the freeze is not lifted after a successful export (POST /archive/resume).BL_ARCHIVE_IMPORT_URLat sandbox creation: restore phases, processes relaunched with new IDs, import applied once, and the quarantine behavior after a partial restore.Content checked against
sandbox-api/src/handler/archive/*(export, import, tar, multipart, transport, quiesce, restore) and the controlplane archive manager.Link to Devin session: https://app.devin.ai/sessions/f05412800720448383d385d1ff7121fe
Requested by: @drappier-charles