DeepSeek Releases Agent Training Sandbox Platform DSec

DeepSeek publicly released the paper “DeepSeek Elastic Compute (DSec): A Sandbox Infrastructure for Effective Agentic Training at Scale” (arXiv:2609.22978) in September 2026, open-sourcing DSec—the production sandbox platform built specifically for large-scale agent training. This represents the first system to tightly integrate elastic sandbox orchestration, state persistence, and reinforcement learning (RL) coordination at production scale.
Key specifications:
- Release date: September 2026 (paper publication)
- System name: DeepSeek Elastic Compute (DSec)
- Sandbox creation throughput: Peak 5,000+ per second, 3 million per day
- Concurrent capacity: 380,000+ simultaneous sandboxes
- Single cluster scale: ~160 nodes, 30,000 CPU cores, 250TB RAM
- Storage backend: Fire-Flyer File System (3FS), a cluster-wide distributed filesystem
Architectural Innovations for Agentic Workloads
DSec addresses the critical bottleneck in agent training: the inability of existing infrastructure to reliably provision isolated, stateful execution environments at scale. Unlike traditional large language model (LLM) training—which relies on GPU clusters for batch matrix computations—agent training demands that models inspect repositories, invoke tools, compile code, browse the web, and interact with task-specific services within isolated sandboxes.
The platform exposes four sandbox backends (FnCall, container, microVM, and full-VM) through a unified SDK, enabling dynamic isolation selection based on task security and performance requirements. Environment composition is achieved via independently versioned layers—eliminating redundant image builds—and optimized through memory sharing and reclamation strategies.
A surprising contradiction highlighted in the paper: agent training scalability is constrained not by GPU compute but by environment provisioning capacity. Existing sandbox runtimes fail under bursty creation patterns, state retention demands, and slow image distribution—necessitating a fundamental platform redesign from single-runtime to elastic execution orchestration.
Co-design with the RL framework enables lifecycle alignment between sandboxes and training rounds: rollout states persist during training, while idle resources are reclaimed. DSec also incorporates mechanisms to mitigate agent misbehavior such as reward hacking, ensuring training stability.
Technical Comparison with Conventional Approaches

| Dimension | Traditional Container Platforms | DSec | Notes |
|---|---|---|---|
| Sandbox lifecycle | Single-run or short-term | Tied to RL training rounds | Supports state retention and resource recovery |
| Isolation strategy | Single container tier | Four-tier (FnCall/container/microVM/full-VM) | Dynamic selection per task needs |
| Image distribution | Local pulling or pre-caching | On-demand loading from 3FS | Avoids redundant full-image transfers |
| Memory management | Process-level isolation | Joint sharing and reclamation | Enables high-density deployment |
| Scheduling | Static allocation | Overcommitment with latency guarantees | High utilization without sacrificing responsiveness |
Note: This table strictly reflects technical details from the paper.
Practical Adoption Guidance
- Ready to adopt: Research teams conducting agentic training with multi-domain tasks (code generation, tool usage, web interaction), especially those already operating distributed computing clusters and willing to invest in infrastructure customization.
- Consider waiting: Small-to-medium teams seeking turnkey solutions—DSec is designed as a production-grade infrastructure requiring fixed deployment of ~160-node clusters to realize its full capacity. Teams should consider adopting the SDK design principles incrementally while leveraging cloud VM/container services for initial experiments.
Final Thoughts
DSec redefines the engineering maturity benchmark for agent systems: as LLM inference matures, environment provisioning capacity will become the decisive factor in evaluating production readiness. This shift marks the inevitable evolution from simulated inference to real-world interactive autonomy.
