I am trying to write text file with some text and loading same text file in data-bricks but i am getting error
Code
#write a file to DBFS using Python I/O APIs
with open("/dbfs/FileStore/tables/test_dbfs.txt", 'w') as f:
f.write("Apache Spark is awesome!\n")
f.write("End of example!")
# read the file
with open("/dbfs/tmp/test_dbfs.txt", "r") as f_read:
for line in f_read:
print(line)
Error FileNotFoundError: [Errno 2] No such file or directory: '/dbfs/FileStore/tables/test_dbfs.txt'
The
/dbfs
mount doesn't work on Community Edition with DBR >= 7.x - it's a known limitation.To workaround this limitation you need to work with files on the driver node and upload or download files using the
dbutils.fs.cp
command (docs). So your writing will look as following:and reading from DBFS will look as following: