An open API service indexing awesome lists of open source software.

https://github.com/epomatti/az-datalake

Azure Data Lake Gen2 with azcopy
https://github.com/epomatti/az-datalake

adlsgen2 azure azure-data-lake terraform

Last synced: 3 months ago
JSON representation

Azure Data Lake Gen2 with azcopy

Awesome Lists containing this project

README

        

# Azure Data Lake Gen2

Create the infrastructure:

```sh
terraform init
terraform apply -auto-approve
```

Download and install azcopy tool ([v10 link](https://aka.ms/downloadazcopy-v10-linux)).

```sh
curl -L https://aka.ms/downloadazcopy-v10-linux -o azcopylinux10.tar.gz
tar -xf azcopylinux10.tar.gz
```

Execute the copy:

```sh
azcopy login --tenant-id=

./azcopy cp "./files/*" "https://dlsmydatalake789.dfs.core.windows.net/myfilesystem001" --recursive=true
```