File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -80,9 +80,12 @@ public final class LambdaRuntime<Handler>: Sendable where Handler: StreamingLamb
8080
8181 // Get the max concurrency authorized by user when running on
8282 // Lambda Managed Instances
83- // This is not documented anywhere, except the NodeJS runtime
83+ // See:
84+ // - https://docs.aws.amazon.com/lambda/latest/dg/lambda-managed-instances.html#lambda-managed-instances-concurrency-model
85+ // - https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html
86+ //
87+ // and the NodeJS implementation
8488 // https://github.com/aws/aws-lambda-nodejs-runtime-interface-client/blob/a4560c87426fa0a34756296a30d7add1388e575c/src/utils/env.ts#L34
85- // and
8689 // https://github.com/aws/aws-lambda-nodejs-runtime-interface-client/blob/a4560c87426fa0a34756296a30d7add1388e575c/src/worker/ignition.ts#L12
8790 let maxConcurrency = Int ( Lambda . env ( " AWS_LAMBDA_MAX_CONCURRENCY " ) ?? " 1 " ) ?? 1
8891
You can’t perform that action at this time.
0 commit comments