We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c805516 commit 359a4cbCopy full SHA for 359a4cb
1 file changed
services/apps/packages_worker/src/deps-dev/workflows/ingestVersions.ts
@@ -21,7 +21,10 @@ const { gcsParquetToStaging } = proxyActivities<typeof depsDevActivities>({
21
})
22
23
const { mergeStagingToTable } = proxyActivities<typeof depsDevActivities>({
24
- startToCloseTimeout: '1 hour',
+ // A single ~1M-row chunk merge into the live-index/live-constraint versions table can run long;
25
+ // 4h matches ingestDependencies and gives headroom over the previously-observed 2h overrun. The
26
+ // merge is non-retryable (maximumAttempts: 1), so too short a timeout fails the whole ingest.
27
+ startToCloseTimeout: '4 hours',
28
retry: { maximumAttempts: 1 },
29
30
0 commit comments