Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ case class GcpFormatProvider(sparkSession: SparkSession) extends FormatProvider
val sparkOptions: Map[String, String] = Map(
// todo(tchow): No longer needed after https://github.com/GoogleCloudDataproc/spark-bigquery-connector/pull/1320
"temporaryGcsBucket" -> sparkSession.conf.get("spark.chronon.table.gcs.temporary_gcs_bucket"),
"writeMethod" -> "direct",
"writeMethod" -> "indirect", // writeMethod direct does not output partitioned tables. keep as indirect.
"materializationProject" -> tableId.getProject,
"materializationDataset" -> tableId.getDataset
) ++ partitionColumnOption
Expand Down
Loading