标签: python apache-spark
我有一个大的Spark数据帧df,我需要在本地磁盘上写。
df.toPandas().to_csv()不起作用,因为这会消耗掉 太多的记忆。
df.toPandas().to_csv()
如何拆分数据框并写下单个文件?