I registered an azure storage account gen2 where datalake filesystem enabled as a datastore as
_ = Datastore.register_azure_data_lake_gen2(workspace='xxx',
datastore_name='store-identifier',
filesystem= 'container',
account_name= 'xxx',
subscription_id= 'xxx',
resource_group= 'xxx',
overwrite=1)
I tried uploading files to this using
destination_store = Datastore.get(workspace, 'store-identifier');
destination_store.upload(
src='data/', target_path="data_science/", overwrite=True
)
AzureDataLakeGen2Datastore' object has no attribute 'upload'
When i opened the underlying AzureDataLakeGen2Datastore
it mentions that the class does not support an upload and asks users to use a Dataset
instance to upload data. However I tried both Dataset.Tabular.upload
and Dataset.Files.upload
however neither of them support support this functionality
How should i proceed further. Is this functionality not yet supported via azure machine learning ?