Skip to content

Commit c19ab3d

Browse files
committed
initial writing
1 parent 4d9950f commit c19ab3d

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-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+
| Container name | Connection name | Description |
98+
| --- | --- | --- |
99+
| {workspace-ID}-azureml | workspaceartifactstore | Storage for assets such as metrics, models, and components. |
100+
| {workspace-ID}-blobstore| workspaceblobstore | Storage for data upload, job code snapshots, and pipeline data cache. |
101+
| {workspace-ID}-code | NA | Storage for notebooks, compute instances, and prompt flow. |
102+
103+
> [!TIP]
104+
> The {workspace-id}-code container is created lazily, so it doesn't exist until you've performed an action that needs it. For example, creating a compute instance.
105+
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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,17 @@ 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+
| Datastore name | Storage container name | Desccription |
50+
|---|---|---|
51+
| `workspaceblobstore` | `{workspace-id}-blobstore` | Stores data uploads, job code snapshots, and pipeline data cache. |
52+
| `workspaceworkingdirectory` | `{workspace-id}-code` | Stores data for notebooks, compute instances, and prompt flow. |
53+
| `workspacefilestore` | `{workspace-id}-file` | Alternative container for data upload. |
54+
| `workspaceartifactstore` | `{workspace-id}-azureml` | Storage for assets such as metrics, models, and components. |
55+
4556
## Data types
4657

4758
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)