What uses bucket space
W&B stores several categories of data in your configured object storage. The BYOB overview lists examples, including experiment files and metrics, artifact files, media files, run files, and exported history in Parquet form. Together these drive bucket size and cost.How W&B removes data from storage
Deletion in the W&B App or Public API updates W&B metadata first. Removing a run, artifact, or file from the product does not guarantee an immediate drop in reported bucket usage. Object storage cleanup runs as background work that can lag, especially on busy instances.Artifacts
Deleted artifacts are soft-deleted, then processed by artifact garbage collection. Self-managed deployments must setGORILLA_ARTIFACT_GC_ENABLED and meet provider requirements such as versioning or soft delete. See Delete an artifact and Configure environment variables.
Run data and run files
After runs or run-associated files are deleted, permanent removal of the underlying stored objects is controlled separately from artifacts. On Dedicated Cloud and Self-Managed deployments,GORILLA_DATA_RETENTION_PERIOD sets how long deleted run data is retained before it can be removed from storage. This setting does not delete artifacts. See Configure environment variables, Data retention policy for Dedicated Cloud, and Delete runs for how run and file deletion relates to storage.
What to expect from background cleanup
Garbage collection and related jobs that free object storage are best-effort. W&B does not guarantee that a given object disappears from your bucket within a specific time after you delete content in the UI or API. Projects with very large numbers of files (for example many media files per run) can see longer delays before storage usage falls. Monitor your bucket in your cloud provider and contact W&B Support or your account team if cleanup appears stuck relative to your expectations.Reduce bucket usage
Use supported product flows first:- Delete runs in the W&B App or with Python when you no longer need them.
- Delete artifacts you no longer need, and use Artifact TTL where it fits your workflow.
- Objects you remove will no longer be available to download through W&B.
- You should delete only keys you intend to remove. Incorrect deletes can break access to data the app still references.
- If your bucket uses object versioning or provider soft delete (for example on Google Cloud Storage), storage charges can persist until non-current versions or soft-deleted objects expire under your cloud lifecycle rules.