Back

Blog details

AIOZ Storage as a Dataset and Model-Output Backend

AIOZ Network
6 min readAugust 20, 2026
aioz-storage
Close-up of code displayed on a computer screen

Using AIOZ Storage as a dataset and model-output backend means treating it as exactly what it is: an S3-compatible object store, not a purpose-built MLOps platform. That distinction decides what you should and shouldn't expect from it. This article covers what actually works today, training data in and model outputs out, using the buckets, presigned URLs, and access grants already documented, and where the honest boundaries sit: no native object versioning, no lifecycle policies, and nothing dataset-format-aware built in.

TL;DR:

  • AIOZ Storage can reliably hold training datasets and model outputs as plain objects, with presigned URLs and access grants for controlling who reads and writes them.
  • It has no documented object versioning or lifecycle/tiering policies, features purpose-built ML storage platforms often ship natively.
  • Where you land depends on the tradeoff: lower cost and a familiar S3 API, versus features you'd have to build yourself.

What "Dataset and Model-Output Backend" Actually Means Here

Two directions, both handled the same way at the storage layer. Datasets in: training data, images, or any input a job needs to read before it runs. Outputs out: checkpoints, generated files, logs, anything a job produces that needs to persist after it finishes. AIOZ Storage doesn't distinguish between the two, both are just objects in a bucket, which is exactly the point. It is a storage layer, not a training or orchestration layer, and this article stays scoped to what happens at that layer.

What AIOZ Storage Can Do

Upload and download at whatever scale your job needs. AIOZ's published usage limits document 100 buckets and 100 sub-users per account and a 100 request-per-second rate limit, but name no maximum object size or bucket size, so a multi-gigabyte checkpoint file isn't documented as a problem the way it would be against a service with an explicit per-object cap. Organize datasets and outputs by bucket and key prefix, the same structure every S3-compatible tool already expects, and reachable through the JavaScript, Go, Python, and CLI paths already covered on this hub.

Two access-control tools matter specifically for a pipeline, not just a person. Presigned URLs work against AIOZ Storage exactly like they work against S3, since signing happens client-side and doesn't depend on anything AIOZ-specific: hand a training job a time-limited download link for a dataset, or a time-limited upload link for its output, without ever giving it a standing credential. For access that needs to persist longer than a single job run, an access grant scoped to Read on the dataset bucket and Write on the output bucket does the same job with an expiration you control, up to a year out.

Server room aisle with rows of dark server racks

What AIOZ Storage Can't (or Doesn't Yet) Do

No documented object versioning. AIOZ's public documentation does not describe a versioning feature, the ability to keep prior copies of an object as it gets overwritten, the way S3 buckets can be configured to do. If a pipeline overwrites latest-checkpoint.pt in place, the previous version is gone, and there is no built-in undo. The practical workaround, covered below, is naming discipline rather than a platform feature.

No documented lifecycle or tiering policies. There is no published mechanism for auto-expiring old objects, auto-deleting stale experiment outputs, or moving cold data to a cheaper storage class, all common S3 lifecycle-rule features. Anything like that has to be scripted and run on a schedule yourself, there's no server-side rule to configure.

No dataset-format awareness. AIOZ Storage stores whatever bytes you give it. It doesn't understand Parquet, WebDataset, or any ML-specific packaging format any more than raw S3 does, and it has no vector-database, embeddings, or similarity-search capability, documented or otherwise, the same boundary covered in this hub's overview. If a workflow needs any of that, it happens in a separate layer your pipeline builds on top, not inside AIOZ Storage itself.

A Practical Pattern: Structuring Buckets Without Native Versioning

Since there's no built-in version history, the workaround is putting the version in the key instead of relying on the platform to remember it. A dataset bucket organized as datasets///... and an output bucket organized as outputs// means every write is a new key, not an overwrite, and nothing gets silently lost. This is the same pattern teams use against plain S3 when they choose not to enable versioning for cost reasons, it isn't an AIOZ-specific workaround, just the standard answer to the same standard gap.

If manual naming discipline isn't enough, DVC (Data Version Control), an open-source tool built for exactly this problem, layers real versioning on top of any S3-compatible remote, tracking data and model versions through Git commits while the actual bytes sit in your bucket. Its dvc remote modifyendpointurlcommand is documented specifically for pointing DVC at non-AWS S3-compatible services like MinIO, the same config shape AIOZ Storage's own endpoint fits, so an AIOZ Storage bucket is a legitimate DVC remote target, the same way it's a legitimate target for any other S3-compatible tool covered on this hub.

Pair that with the access-control split above: a read-scoped access grant or presigned URL for the dataset bucket a training job pulls from, and a separate write-scoped one for the output bucket it writes to. Two different scopes for two different directions of traffic, rather than one broad credential that can do both, keeps a misbehaving job from being able to overwrite the dataset it's supposed to only be reading.

Where This Fits Against Purpose-Built ML Storage Platforms

Worth being direct about the tradeoff rather than dodging it. Platforms built specifically for ML artifacts, dataset registries and experiment-tracking tools with built-in versioning, lineage, and metadata search, do things AIOZ Storage doesn't attempt to do at the storage layer. What AIOZ Storage offers instead is a plain, S3-compatible object store on decentralized infrastructure, at the pricing and encryption model covered elsewhere on this hub. If your pipeline already treats S3 as a dumb, reliable object layer and handles versioning or metadata itself, that's a straightforward swap. If it depends on a platform's native versioning or lineage features, those don't come with the endpoint, and building them yourself is real, non-trivial work worth planning for upfront.

Frequently Asked Questions

Can I store large model checkpoint files on AIOZ Storage?
AIOZ's published usage limits document account-level caps (100 buckets, 100 sub-users, 100 requests per second) but no maximum object or bucket size, so a large checkpoint file isn't documented as a problem the way it would be against a service with an explicit per-object cap.

Does AIOZ Storage support object versioning?
Not that its public documentation describes. There is no documented feature for keeping prior versions of an overwritten object. The workaround is either a version identifier in the object key itself, or a tool built for this specifically, like DVC, which layers real versioning on top of any S3-compatible remote through its endpointurl config option.

Can I set up automatic expiration for old training outputs?
Not through a documented AIOZ Storage feature. There's no published lifecycle-policy mechanism for auto-expiring or auto-tiering objects; cleanup has to be scripted and scheduled yourself.

How do I give a training job temporary access to a dataset without sharing my main credentials?
A presigned URL, generated client-side with the same boto3 method used against Amazon S3, or a time-scoped access grant if the job needs longer-lived access than a single presigned link's expiration window.

Does AIOZ Storage understand ML-specific data formats like Parquet or WebDataset?
No. It stores objects as bytes, the same as any S3-compatible store, with no built-in awareness of ML packaging formats.

Is AIOZ Storage a replacement for a dedicated ML dataset-versioning platform?
Not on its own. It handles the storage layer reliably, but versioning, lineage, and metadata search that a dedicated dataset-registry tool provides natively would need to be built on top, not assumed to come with the endpoint.

References

We only send updates when meaningful changes ship, and you can unsubscribe anytime

Related Content

blog thumbnail

How Automatic MIME Type Detection Works on AIOZ Storage

Automatic MIME type detection on AIOZ Storage uses Google Magika to identify a file's type from its content when Content-Type is missing. How it actually works.

aioz-storage
5 min readSeptember 07, 2026
blog thumbnail

AIOZ Storage Developer Platform: SDKs, CLI, and Migrations

The AIOZ storage developer platform in one place: three SDKs, a CLI, direct API access, two migration paths, and the one config pattern tying it all together.

aioz-storage
6 min readSeptember 06, 2026
blog thumbnail

The 3-2-1 Backup Rule: A Practical Framework Explained

The 3-2-1 backup rule: three copies, two media, one off-site. Why it still holds up, why ransomware forced a 3-2-1-1-0 update, and where AIOZ Storage fits.

aioz-storage
8 min readSeptember 05, 2026
blog thumbnail

RBAC vs ABAC vs Capability-Based Access Control Explained

RBAC vs ABAC vs capability-based access control: three different answers to who can do what. NIST defines the first two, AIOZ Storage macaroons are the third.

aioz-storage
8 min readSeptember 04, 2026
blog thumbnail

What Is a CDN and How Does It Relate to Object Storage?

What is a CDN: a network of cached servers placed near users to cut latency. How it sits in front of an origin like S3, and where AIOZ Storage fits in.

aioz-storage
7 min readSeptember 03, 2026
blog thumbnail

Hot vs Cold Storage: Storage Tiers and When They Matter

Hot vs cold storage: hot tiers cost more to store but less to access, cold tiers flip that trade. How AWS and Azure structure it, and where AIOZ Storage fits.

aioz-storage
8 min readSeptember 02, 2026