-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Closed
Labels
type: bugBug reportBug reporttype: featureNew feature, or improvement to an existing featureNew feature, or improvement to an existing feature
Description
I'm currently working on a process by which a kinesis stream triggers a lambda function to process a batch of records. Whenever the putRecords method is used with a large amount of records, the call to trigger the lambda will fail b/c the argument list is too long. The command is:
CONTAINER_ID="$(docker create -e AWS_LAMBDA_FUNCTION_INVOKED_ARN="$AWS_LAMBDA_FUNCTION_INVOKED_ARN" -e AWS_LAMBDA_FUNCTION_NAME="$AWS_LAMBDA_FUNCTION_NAME" -e AWS_LAMBDA_EVENT_BODY="$AWS_LAMBDA_EVENT_BODY" -e AWS_LAMBDA_FUNCTION_VERSION="$AWS_LAMBDA_FUNCTION_VERSION" -e LOCALSTACK_HOSTNAME="$LOCALSTACK_HOSTNAME" "lambci/lambda:nodejs8.10" "index.handler")"
Instead of sending the event body to the lambda via an argument list, the body should be written to a file that is then copied into the docker and then the command should reference the file in the arguments list.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
type: bugBug reportBug reporttype: featureNew feature, or improvement to an existing featureNew feature, or improvement to an existing feature