You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run large backfills/hygiene tasks without timeouts or instance impact. Instead of one risky long transaction, process records in chunks and automatically schedule the next slice.
5
+
6
+
## Where to use it
7
+
- Script Include invoked from Background Script, on-demand Scheduled Job, or Flow Action wrapper.
8
+
9
+
## How it works
10
+
- Queries a time-boxed chunk (e.g., 40 seconds, 500 rows).
11
+
- Executes a caller-supplied per-record function.
12
+
- Saves a checkpoint (`sys_id`) in a system property.
13
+
- Uses `ScheduleOnce` to queue the next slice (no `gs.sleep`).
14
+
15
+
## Configuration
16
+
- Target table, encoded query, orderBy field (default `sys_id`)
0 commit comments