是否可以在不返回路径“ColumnName=Value”的情况下使用函数 partitionBy 或其他函数?
我在 azure databricks 中使用 python 笔记本将 csv 文件发送到 Azure Data Lake Store。使用的 Cmd 如下:
%scala
val filepath= "dbfs:/mnt/Test"
Sample
.coalesce(1)
.write
.mode("overwrite")
.partitionBy("Year","Month","Day")
.option("header", "true")
.option("delimiter",";")
.csv(filepath)
期望有这条路径:/Test/2018/12/11
而不是:/Test/Year=2018/Month=12/Day=11