Upload data from Local Filesystem to Azure Data Lake¶
The Azure Data Lake (ADL) make it easy to store data of any size, shape, and speed. This page shows how to upload data from local filesystem to ADL.
Prerequisite Tasks¶
LocalFilesystemToADLSOperator¶
LocalFilesystemToADLSOperator
allows you to
upload data from local filesystem to ADL.
Below is an example of using this operator to upload a file to ADL.
upload_file = LocalFilesystemToADLSOperator(
task_id="upload_task",
local_path=LOCAL_FILE_PATH,
remote_path=REMOTE_FILE_PATH,
)