Hi Moritz,
While running a pipeline in Azure ML Studio, it requires a valid datastore URI, data asset URI, or registry URI. The path in your error message is not a valid AzureML URI.
A valid AzureML URI looks like this:
azureml://subscriptions/<subscription-id>/resourcegroups/<resource-group>/workspaces/<workspace-name>/datastores/<datastore-name>/paths/<path-to-file>
#This is the correct AzureML URI
Make sure the URI you are using is the correct AzureML URI.
The AzureMachineLearningFileSystem
helper expects an Azure ML datastore URI.
Here is the documentation for your reference: https://learn.microsoft.com/en-us/azure/machine-learning/concept-data?view=azureml-api-2
Also, make sure that you have the correct YAML file for the pipeline component to accept the data you are providing.
Feel free to accept this as an answer.
Thank you for reaching out to the Microsoft QNA Portal.