Skip to content

Commit 10c0404

Browse files
Merge pull request #278455 from SturgeonMi/patch-35
Update how-to-datastore.md
2 parents 5ba1da8 + 077b4d4 commit 10c0404

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

articles/machine-learning/how-to-datastore.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,6 @@ az ml datastore create --file my_adls_datastore.yml
416416
```
417417
---
418418

419-
---
420419

421420
## Create a OneLake (Microsoft Fabric) datastore (preview)
422421

@@ -434,8 +433,8 @@ OneLake datastore creation requires the following information from your Microsof
434433

435434
You will then find "Endpoint", "Workspace GUID" and "Artifact GUID" in "URL" and "ABFS path" from the "Properties" page:
436435

437-
- URL format: https://{your_one_lake_endpoint}/{your_one_lake_workspace_guid}/{your_one_lake_artifact_guid}/Files
438-
- ABFS path format: abfss://{your_one_lake_workspace_guid}@{your_one_lake_endpoint}/{your_one_lake_artifact_guid}/Files
436+
- **URL format**: https://**{your_one_lake_endpoint}**/**{your_one_lake_workspace_guid}**/**{your_one_lake_artifact_guid}**/Files
437+
- **ABFS path format**: abfss://**{your_one_lake_workspace_guid}**@**{your_one_lake_endpoint}**/**{your_one_lake_artifact_guid}**/Files
439438

440439
:::image type="content" source="media/how-to-datastore/onelake-url-abfs-path.png" alt-text="Screenshot that shows URL and ABFS path of a OneLake artifact in Microsoft Fabric UI." lightbox="./media/how-to-datastore/onelake-url-abfs-path.png":::
441440

@@ -455,7 +454,7 @@ store = OneLakeDatastore(
455454
one_lake_workspace_name="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX", #{your_one_lake_workspace_guid}
456455
endpoint="msit-onelake.dfs.fabric.microsoft.com" #{your_one_lake_endpoint}
457456
artifact = OneLakeArtifact(
458-
name="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/Files","{your_one_lake_artifact_guid}/Files
457+
name="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/Files", #{your_one_lake_artifact_guid}/Files
459458
type="lake_house"
460459
)
461460
)
@@ -483,7 +482,7 @@ store = OneLakeDatastore(
483482
one_lake_workspace_name="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX", #{your_one_lake_workspace_guid}
484483
endpoint="msit-onelake.dfs.fabric.microsoft.com" #{your_one_lake_endpoint}
485484
artifact = OneLakeArtifact(
486-
name="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/Files","{your_one_lake_artifact_guid}/Files
485+
name="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/Files", #{your_one_lake_artifact_guid}/Files
487486
type="lake_house"
488487
)
489488
credentials=ServicePrincipalCredentials(

0 commit comments

Comments
 (0)