本文介绍了使用pyspark覆盖spark输出的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用PySpark中的以下选项覆盖Spark数据帧,但不成功
I am trying to overwrite a Spark dataframe using the following option in PySpark but I am not successful
spark_df.write.format('com.databricks.spark.csv').option("header", "true",mode='overwrite').save(self.output_file_path)
mode = overwrite命令失败
the mode=overwrite command is not successful
推荐答案
尝试:
spark_df.write.format('com.databricks.spark.csv') \
.mode('overwrite').option("header", "true").save(self.output_file_path)
这篇关于使用pyspark覆盖spark输出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!