Link to this sectionAzure Blob Storage Integration#
The Azure Blob Storage integration connects your storage account containers to Ultralytics Platform. Your images stay in your containers — Platform indexes them in place, so you can browse, annotate, and train YOLO models without uploading a copy.
Azure Blob Storage datasets require a Pro or Enterprise plan. Free workspaces see the integration and are prompted to upgrade when connecting. Existing Azure Blob Storage datasets stay fully accessible if a subscription ends — only new connections and imports require Pro.
Link to this sectionGet a Connection String#
Platform only ever reads from your storage — it never writes, modifies, or deletes your blobs. The current integration requires an account access-key connection string, which grants account-wide privileges even though Platform uses only list and read operations:
- In the Azure portal, open your storage account.
- Go to Security + networking > Access keys.
- Copy a connection string.
Connections use the standard blob.core.windows.net endpoint. Sovereign clouds (Azure China, Azure Government) and custom blob endpoints are not supported.
Link to this sectionConnect to Platform#
- Go to Settings > Integrations and find the Microsoft Azure card.
- Click Connect and paste the connection string.
- Platform lists the containers in the storage account. Select the ones to connect, or enter a container name manually.
- Click Connect. Platform verifies it can list and read each selected container before saving anything.
Reconnecting the same storage account later adds new containers to the existing integration. A saved credential is only replaced once its replacement can still read every container you've already connected.
An account key can authorize write and delete operations or create SAS tokens if it is exposed outside Platform. Credentials are encrypted at rest with AES-256-GCM, are never returned to the browser, and never enter training job payloads. Use a dedicated storage account where practical. To revoke access, rotate the storage account access keys in Azure.
Link to this sectionCreate a Dataset from a Blob Container#
- Click New Dataset and open the Cloud storage tab.
- Pick a connected container and browse to the folder containing your data.
- Confirm the folder, adjust the dataset name, and create the dataset.
Platform lists the folder once and indexes what it finds:
- Images —
.jpg,.jpeg,.png,.webp, and.avifblobs are indexed with dimensions read from bounded header requests. Source pixels are never copied out of your container. - Labels — YOLO
.txtsidecars are parsed into Platform annotations, matched by the standardimages/→labels/layout or as same-folder siblings. - Metadata — a
data.yaml/data.ymlprovides class names, task type, and pose keypoint shape, exactly like an archive upload. - Splits —
train,val, andtestfolder names in the blob path assign splits automatically.
The dataset then behaves like any other: browse and annotate it, set it public or private, share it with your team, and train on it through managed training. Originals are streamed on demand, and indexed images do not consume your Platform storage quota.
A single import indexes up to 50,000 blobs, and label or YAML files up to 1 MB each. Larger containers should be split across multiple datasets.
Every indexed image is pinned to its blob ETag, and Platform fails closed if a blob changes underneath it. Add new blobs instead of overwriting existing ones.
Link to this sectionFailed Imports#
If an import fails — an empty folder, a typo in the path, or revoked permissions — the dataset shows the error on its page. Editors can click Retry import to restart it with the stored container and folder, or create a new dataset pointing at the corrected path.
Link to this sectionTraining#
Managed training works through the normal training flow. Workers download the pinned originals into temporary job storage for the run and remove them with job cleanup — your Azure credentials never reach compute.
Link to this sectionCurrent Limitations#
Azure-backed datasets currently exclude features that require Platform-owned copies of your images: auto-annotation, clustering analysis, dataset cloning, and immutable version snapshots.
Deleting an Azure-backed dataset, or individual images from it, removes Platform's references only — your blobs are never touched.
Also see the Google Cloud Storage and Amazon S3 integrations.