Reputation: 3366
I have a zip file with the size of 32GB. I am required to import this to a data lake storage service account. I am trying to unzip and move the file through Azure data factory.
Zip file is uploaded to the Azure Blob Storage. However I cannot see the ZIP extension as the Source data format.
Is it possible to do the unzip operation through the data factory?
Upvotes: 4
Views: 3112
Reputation: 7728
There is no Zip data set type, but you can Zip and Unzip using Binary data sets:
In the Copy activity, you can elect whether to retain the Zip file name as a folder:
Upvotes: 5