You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An Azure Machine Learning datastore is a *reference* to an *existing* storage account on Azure. The benefits of creating and using a datastore include:
49
48
@@ -69,9 +68,11 @@ uri = f'azureml://subscriptions/{subscription}/resourcegroups/{resource_group}/w
69
68
```
70
69
71
70
These Datastore URIs are a known implementation of [Filesystem spec](https://filesystem-spec.readthedocs.io/en/latest/index.html) (`fsspec`): A unified pythonic interface to local, remote and embedded file systems and bytes storage.
71
+
You can pip install the `azureml-fsspec`package and its dependency `azureml-dataprep` package. And then you can use the Azure Machine Learning Datastore implementation of `fsspec`.
72
72
73
73
The Azure Machine Learning Datastore implementation of `fsspec` automatically handles credential/identity passthrough used by the Azure Machine Learning datastore. This means you don't need to expose account keys in your scripts or do additional sign-in procedures on a compute instance.
74
74
75
+
75
76
For example, you can directly use Datastore URIs in Pandas - below is an example of reading a CSV file:
76
77
77
78
```python
@@ -121,10 +122,10 @@ from azureml.fsspec import AzureMachineLearningFileSystem
0 commit comments