在 Google Cloud Platform 上,我尝试提交一个将数据帧写入 BigQuery 的 pyspark 作业。执行写入的代码如下:
finalDF.write.format("bigquery")\
.mode('overwrite')\
.option("table","[PROJECT_ID].dataset.table")\
.save()
Run Code Online (Sandbox Code Playgroud)
我得到了标题中提到的错误。如何设置GCS临时路径?