Skip to content

Commit 9a00b73

Browse files
anth-volkclaude
andcommitted
Enable startup CPU boost on Cloud Run candidate deploys
Cold-start imports (~232s, dominated by country package construction) sit on the edge of Cloud Run's hard 240s startup probe cap, which cannot be extended by any probe configuration. Startup CPU boost shortens the import within that cap; the structural fix (binding the port before app import) follows in the next migration stage. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent eb9b79f commit 9a00b73

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/scripts/deploy_cloud_run_candidate.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ cloud_run_run gcloud run deploy "${CLOUD_RUN_SERVICE}" \
4747
--add-cloudsql-instances "${CLOUD_RUN_CLOUD_SQL_INSTANCE}" \
4848
--port "${CLOUD_RUN_PORT}" \
4949
--cpu "${CLOUD_RUN_CPU}" \
50+
--cpu-boost \
5051
--memory "${CLOUD_RUN_MEMORY}" \
5152
--timeout "${CLOUD_RUN_TIMEOUT}" \
5253
--min-instances "${CLOUD_RUN_MIN_INSTANCES}" \

0 commit comments

Comments
 (0)