Skip to content

Commit fed951b

Browse files
Merge pull request #271329 from Blackmist/240793-default-datastores
initial writing
2 parents 6898a3a + c93579a commit fed951b

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

articles/ai-studio/concepts/architecture.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,20 @@ The role assignment for each AI project's service principal has a condition that
9090
9191
For more information on Azure access-based control, see [What is Azure attribute-based access control](/azure/role-based-access-control/conditions-overview).
9292

93+
## Containers in the storage account
94+
95+
The default storage account for an AI hub has the following containers. These containers are created for each AI project, and the `{workspace-id}` prefix matches the unique ID for the AI project. The container is accessed by the AI project using a [connection](connections.md).
96+
97+
> [!TIP]
98+
> To find the ID for your AI project, go to the AI project in the [Azure portal](https://portal.azure.com/). Expand **Settings** and then select **Properties**. The **Workspace ID** is displayed.
99+
100+
| Container name | Connection name | Description |
101+
| --- | --- | --- |
102+
| {workspace-ID}-azureml | workspaceartifactstore | Storage for assets such as metrics, models, and components. |
103+
| {workspace-ID}-blobstore| workspaceblobstore | Storage for data upload, job code snapshots, and pipeline data cache. |
104+
| {workspace-ID}-code | NA | Storage for notebooks, compute instances, and prompt flow. |
105+
| {workspace-ID}-file | NA | Alternative container for data upload. |
106+
93107
## Encryption
94108

95109
Azure AI Studio uses encryption to protect data at rest and in transit. By default, Microsoft-managed keys are used for encryption. However you can use your own encryption keys. For more information, see [Customer-managed keys](../../ai-services/encryption/cognitive-services-encryption-keys-portal.md?context=/azure/ai-studio/context/context).

articles/machine-learning/concept-data.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,20 @@ Azure Data Lake Gen2| ✓ | ✓|
4242

4343
See [Create datastores](how-to-datastore.md) for more information about datastores.
4444

45+
### Default datastores
46+
47+
Each Azure Machine Learning workspace has a default storage account (Azure storage account) that contains the following datastores:
48+
49+
> [!TIP]
50+
> To find the ID for your workspace, go to the workspace in the [Azure portal](https://portal.azure.com/). Expand **Settings** and then select **Properties**. The **Workspace ID** is displayed.
51+
52+
| Datastore name | Data storage type | Data storage name | Description |
53+
|---|---|---|---|
54+
| `workspaceblobstore` | Blob container | `azureml-blobstore-{workspace-id}` | Stores data uploads, job code snapshots, and pipeline data cache. |
55+
| `workspaceworkingdirectory` | File share | `code-{GUID}` | Stores data for notebooks, compute instances, and prompt flow. |
56+
| `workspacefilestore` | File share | `azureml-filestore-{workspace-id}` | Alternative container for data upload. |
57+
| `workspaceartifactstore` | Blob container | `azureml` | Storage for assets such as metrics, models, and components. |
58+
4559
## Data types
4660

4761
A URI (storage location) can reference a file, a folder, or a data table. A machine learning job input and output definition requires one of the following three data types:

0 commit comments

Comments
 (0)