Hi,
when trying to copy files from the "train" operator environment to other storage types we experinece issues:
from shutil import copyfile
copyfile("test.txt", "tmp/test.txt")
# copyfile("test.txt", "vrep/vflow/tmp/test.txt") did not work also
from hdfs import InsecureClient
client = InsecureClient('http://datalake:50070')
dataset_artefact_path = data_artifact.get_path() + '/test.txt'
shutil.copy2("test.txt", dataset_artefact_path)
Any help is appreciated !
Marcus