I\'m using Spark-Java.
I need to know If there is any diffrence (performance etc) between the following write to Hadoop methods:
ds.writ
There is no difference
orc(path) is simply a shortcut method for format("orc").save(path)
orc(path)
format("orc").save(path)
Same applies for .json(path) and csv(path) with the default write(path) with no format being Parquet
.json(path)
csv(path)
write(path)