having the following code
df.write.format('delta').save(some_path)
how can I set the file name e.g foo.parquet
?
I tried :
df.write
.format('delta')
.option("filename","foo")
.save(some_path)
but it didn't work. is it possible ?
having the following code
df.write.format('delta').save(some_path)
how can I set the file name e.g foo.parquet
?
I tried :
df.write
.format('delta')
.option("filename","foo")
.save(some_path)
but it didn't work. is it possible ?