Skip to content

Commit cf9c097

Browse files
authored
Fix: Default value for the max snapshot IDs per request used for Cloud Composer (#1932)
1 parent 2a2c9d9 commit cf9c097

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlmesh/core/config/scheduler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ class CloudComposerSchedulerConfig(_BaseAirflowSchedulerConfig, BaseConfig, extr
214214
backfill_concurrent_tasks: int = 4
215215
ddl_concurrent_tasks: int = 4
216216

217-
max_snapshot_ids_per_request: t.Optional[int] = 40
217+
max_snapshot_ids_per_request: t.Optional[int] = 20
218218
use_state_connection: bool = False
219219

220220
type_: Literal["cloud_composer"] = Field(alias="type", default="cloud_composer")

0 commit comments

Comments
 (0)