Skip to content

Commit

Permalink
adjust Silver Job Runs module configuration (#1256)
Browse files Browse the repository at this point in the history
enable auto-optimized shuffle for module 2011

originally implemented in commit [d751d5f](d751d5f)
  • Loading branch information
neilbest-db committed Jul 30, 2024
1 parent 25671b7 commit f7460bd
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,11 @@ class Silver(_workspace: Workspace, _database: Database, _config: Config)
)
}

lazy private[overwatch] val jobRunsModule = Module(2011, "Silver_JobsRuns", this, Array(1004, 2010, 2014), shuffleFactor = 12.0)
lazy private[overwatch] val jobRunsModule =
Module( 2011, "Silver_JobsRuns", this, Array(1004, 2010, 2014), shuffleFactor = 12.0)
.withSparkOverrides( Map(
"spark.databricks.adaptive.autoOptimizeShuffle.enabled" -> "true"))

lazy private val appendJobRunsProcess: () => ETLDefinition = {
() =>
ETLDefinition(
Expand Down

0 comments on commit f7460bd

Please sign in to comment.