Featured image of post DeepSeek Open-Sources DSec: Elastic Compute Platform Generating 5,000+ Sandboxes per Second for Agentic Training

DeepSeek Open-Sources DSec: Elastic Compute Platform Generating 5,000+ Sandboxes per Second for Agentic Training

DeepSeek open-sources DSec, a production sandbox platform scaling to 3 million daily sandboxes for large-scale agentic training.

New post

DeepSeek Releases Agent Training Sandbox Platform DSec

DeepSeek Releases Agent Training Sandbox Platform DSec
DeepSeek Releases Agent Training Sandbox Platform DSec|News screenshot

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

Technical Comparison with Conventional Approaches
Technical Comparison with Conventional Approaches|News screenshot

DimensionTraditional Container PlatformsDSecNotes
Sandbox lifecycleSingle-run or short-termTied to RL training roundsSupports state retention and resource recovery
Isolation strategySingle container tierFour-tier (FnCall/container/microVM/full-VM)Dynamic selection per task needs
Image distributionLocal pulling or pre-cachingOn-demand loading from 3FSAvoids redundant full-image transfers
Memory managementProcess-level isolationJoint sharing and reclamationEnables high-density deployment
SchedulingStatic allocationOvercommitment with latency guaranteesHigh 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.