A6 - datastores & data assets

Azure storage

  • the physical storage where the bytes actually live

Azure Blob Storage
└── detector-data/
    ├── run_0001.csv
    ├── run_0002.csv
    └── ...
datastore

  • an Azure ML object representing a connection/reference to an underlying storage service

data asset

  • a named/versioned reference to data that Azure ML workflows can consume

PHYSICAL LAYER
Azure Storage
└── detector/
    ├── 2024/
    ├── 2025/
    └── 2026/

CONNECTION LAYER
Azure ML Datastore
"detector_store"
        │
        ▼
points to underlying storage

ML ASSET LAYER
detector-training-data
├── version 1 → relevant path/data
└── version 2 → updated path/data