报了这个错
Exception in thread "main" java.lang.RuntimeException: Multiple sources found for csv (org.apache.spark.sql.execution.datasources.csv.CSVFileFormat, com.databricks.spark.csv.DefaultSource15), please specify the fully qualified class name.
我的代码是
accessDF.join(accessDF2,accessDF.col("spu_id")===accessDF2.col("spu_id2"))
.select("spu_id","brand_id","cat_id","uid","action_type","date")
.coalesce(5).write.mode(SaveMode.Overwrite).csv("F:\\竞赛数据\\result\\goods_train")