I've got a remote server with a bunch of static files (outside of Azure). I've created a worker role in Azure and I want to use the worker role to transfer these files using SFTP from my remote server straight to my blob storage account (without copying locally to the worker role). Is there an established workflow/best practices on how to do this?
The closest thing I was able to find was this question: Copy file from URL to Azure BLOB
However to use StartCopyFromBlob I would need to have a publicly accessible URL which is not the case.
Also some of these files may be >100mb or >500mb, should that raise any problems?
Thanks.