Practise the standard verbs for reducing AWS Lambda cold start latency.
0 / 5 completed
1 / 5
Fill in: 'We ___ provisioned concurrency on latency-sensitive functions so a cold start never hits a real user request.'
We 'enable' a feature — the standard, established Lambda collocation for turning on pre-warmed concurrency. The other options aren't the recognised term here.
2 / 5
Fill in: 'A large dependency bundle in the deployment package can ___ initialization time that adds seconds to every cold start.'
We say a large bundle will 'increase' init time — the standard, simple collocation for the resulting slowdown. The other options are less idiomatic here.
3 / 5
Fill in: 'We ___ SDK clients outside the handler so a warm invocation reuses the same connection instead of recreating it.'
We 'initialize' a client — the standard, established collocation for setting up a resource once at module scope. The other options aren't the recognised term here.
4 / 5
Fill in: 'We ___ cold start duration in monitoring separately from warm invocation duration so the two aren't averaged together.'
We 'measure' duration — the standard, simple collocation for evaluating a timing metric. The other options are less idiomatic here.
5 / 5
Fill in: 'We ___ the deployment package size down aggressively since a smaller package consistently starts up faster.'
We 'trim' a size — the standard, simple collocation for reducing a deployment artifact's footprint. The other options are less idiomatic here.