I'm using azcopy to upload local files to a blob storage.
I'm using command:
azcopy copy "localpath" "destinationpath(with SAS)" --include="*.csv" --recursive=true
I also tried
azcopy sync "localpath" "destinationpath(with SAS)" --include="*.csv"
The files I'm trying to upload are each 1GB+. When I manually upload a file to the data lake it takes 40min+ for 1 file. If I do it with azcopy it takes 30min+ per file and often fails.
Is it normal that it takes this long? Am I doing something wrong or is there a faster way of doing this?