local_path = client.download_artifacts(<run-id>, "features", local_dir) print("Artifacts downloaded in: {}".format(local_dir)) print("Artifacts: {}".format(local_dir)) After the artifacts have been downloaded to local storage, you can copy (or move) them to an external filesystem or...
dbutils.fs.cp(local_dir, "<filesystem://path-to-store-artifacts>") Move to a mount point %python shutil.move(local_dir, "/dbfs/mnt/<path-to-store-artifacts>")
local_path = client.download_artifacts(<run-id>, "features", local_dir) print("Artifacts downloaded in: {}".format(local_dir)) print("Artifacts: {}".format(local_dir)) After the artifacts have been downloaded to local storage, you can copy (or move) them to an external filesystem or...
dbutils.fs.cp(local_dir, "<filesystem://path-to-store-artifacts>") Move to a mount point %python shutil.move(local_dir, "/dbfs/mnt/<path-to-store-artifacts>")
Copy to an external filesystem %scala dbutils.fs.cp(local_dir, "<filesystem://path-to-store-artifacts>") Move to a mount point %python shutil.move(local_dir, "/dbfs/mnt/<path-to-store-artifacts>")
Copy to an external filesystem %scala dbutils.fs.cp(local_dir, "<filesystem://path-to-store-artifacts>") Move to a mount point %python shutil.move(local_dir, "/dbfs/mnt/<path-to-store-artifacts>")