Hi All,
I have been using the parquet append mode for write which works just
fine. Just wanted to check if the same is supported for plain text format.
The below code blows up with error saying the file already exists.



{code}
userEventsDF.write.mode("append").partitionBy("year", "month",
"date").text(outputDir)
or,
userEventsDF.write.mode("append").partitionBy("year", "month",
"date").format("text").save(outputDir)
{code}

Reply via email to