Reputation: 61
I am performing copy activity from cosmosDB
to Blob storage
, collections will be copied to storage as files. I want those filenames to be renamed with "collectionname-date". The file should have name
, followed by date
and time
as suffix to that. How can I achieve this?
Upvotes: 2
Views: 4192
Reputation: 23792
I have to say i can't find any ways to get the collection name dynamically,but i implement other your requirements. Please see my configurations:
1.Cosmos db dataset:
as normal to set
2.Blob Storage dataset:
configure a parameter for it:
Then configure the dynamic file path:
Pass the collection static name(for me is coll) for the fileName
param.
3.Output in Blob Storage:
Upvotes: 1