关于如何将Dataframe作为CSV保存到Databricks平台上的磁盘上,我发现了多个结果。 Spark Dataframe save as CSV How to save a spark DataFrame as csv on disk?
但是,每当我尝试将答案应用于我的情况时,它都会失败。因此,我在这里提交有关此问题的问题。
我使用以下代码生成以下数据框:
df = spark.read.format(file_type) \
.option("inferSchema", infer_schema) \
.option("header", first_row_is_header) \
.option("sep", delimiter) \
.load(file_location)
display(df)
我现在想将上述数据框保存到磁盘。
我尝试了以下方法:
filepath = "/FileStore/tables"
df.coalesce(1).write.option("header","true").option("sep",",").mode("overwrite").csv("filepath")
有人可以让我知道我要去哪里了吗