Buda LogoBuda

High-Performance SSD Volume

Learn when to use a High-Performance SSD volume vs. standard storage for your Agent's Drive.

When you create an Agent, you can choose between two storage types for its Drive:

  • Standard Volume (default) — S3-backed object storage. Suitable for most use cases.
  • High-Performance SSD — EBS-backed block storage. Optimized for workloads with many small files and frequent random I/O.

Which should I choose?

Use High-Performance SSD when:

  • Your Agent runs development environments — installing packages with pnpm install, npm install, pip install, etc.
  • Your Agent works with many small files — source code repositories, node_modules, Python virtualenvs.
  • You need fast file system operations — compiling code, running tests, building Docker images.
  • Your Agent uses Git heavily — frequent commits, checkouts, and diffs.

Use Standard Volume when:

  • Your Agent handles documents, PDFs, images, or data files — large files with sequential reads.
  • Your Agent does web research, writing, or analysis — not file-system intensive.
  • You want to minimize cost — standard volumes are included in all plans.
  • You're unsure — standard is a safe default for most agents.

Performance comparison

ScenarioStandard (S3)High-Perf SSD (EBS)
pnpm install (1000+ files)SlowFast
Reading a 100 MB PDFFastFast
Git clone + buildSlowFast
Uploading a video fileFastFast
Running a Node.js serverModerateFast

Plan requirements

High-Performance SSD is available on the Pro plan and above.

PlanStandard VolumeHigh-Performance SSD
Free
Plus
Pro
Enterprise

If you're on Free or Plus, the High-Performance SSD option will show an UPGRADE badge in the Create Agent dialog. Click it to view Pro plan pricing.

How to enable it

  1. Click New Agent in the sidebar.
  2. In the Create Agent dialog, find the High-Performance SSD option.
  3. Check the box to enable it.
  4. Click Create.

The storage type is set at creation time and cannot be changed after the Agent is created.

On this page