Diksha Agarwal
Diksha Agarwal

Reputation: 31

How to unzip a '.zip' file uploaded to azure data lake store?

I have few zipped files uploaded in my ADLS folder. I want to unzip it. I do not have the access to download those files. Without unzipping, I cannot view the contents of the zipped file. How do I unzip the files.? I tried using ADF but its failing saying, 'unauthorized access'. I think I will have to use some custom code but I am unable to figure out.

Upvotes: 2

Views: 4891

Answers (1)

Jorge Ribeiro
Jorge Ribeiro

Reputation: 1138

3 options to do it:

  • Use datafactory to unzip the files using the copy file activity (native support for zip files).
  • Create your own batch activity os azure batch and access the data lake and unzip the file
  • Create a custom extractor that unzip the file and read and write line by line

Upvotes: 2

Related Questions