Joel Scheuner
Joel Scheuner
@Kalanamith We just (2023-02-15T19:17:18.227Z) released serverless-localstack [1.0.4](https://www.npmjs.com/package/serverless-localstack/v/1.0.4), which implements an IPv4 fallback to fix IPv6-related issues on macOS. Can you please check with the latest version?
Hi @m-whisler, thank you for reaching out. LocalStack now supports **opt-in** ulimits parity through the following environment variable `LAMBDA_DOCKER_FLAGS`. Example: ``` LAMBDA_DOCKER_FLAGS=--ulimit nofile=1024:1024 --ulimit nproc=735:735 --ulimit core=-1:-1 ``` We decided...
Bootstrap introduced the modal version definition with 3.2.0: `Modal.VERSION = '3.2.0'` https://github.com/twbs/bootstrap/blob/v3.2.0/js/modal.js#L33 => Updating to Bootstrap >= 3.2.0 (or adding the VERSION definition) will fix the problem where data-confirm-modal fails...
Thank you for reaching out @markmashworth Could you try to increase the Lambda environment startup timeout? For example: `LAMBDA_RUNTIME_ENVIRONMENT_TIMEOUT=30` (default is 10 seconds) To mitigate startup delays, we recommend adding...
Hi @markmashworth and @Sotatek-HaiTrieu2 We just [shipped major improvements](https://github.com/localstack/localstack/pull/8970) to the Lambda data plane that fix the behavior where the "same error get logged repeatedly by the container" and provide...
@markmashworth Please ensure to build the Numpy layer with the right target architecture in mind when deploying on an Apple Silicon ARM device.
Thank you for sharing @kirrg001 The changes (i.e., Lambda improvements) are in `latest` and expected to be released later this week. Have you tried the `latest` Docker image? What are...
Hi @aryamohanan Thank you for sharing the logs. The following warning message indicates that the Lambda function times out during the runtime startup: > localstack_main | 2023-09-26T12:56:57.767 WARN --- [...
@aryamohanan Could you try some extra long timeout such as `LAMBDA_RUNTIME_ENVIRONMENT_TIMEOUT=300` (just for debugging)? Is the Lambda package particularly big? Does the Lambda function do something time-consuming **outside** the handler...
@aryamohanan > The problem is specific to my computer, You mentioned `aarch64`, what computer/operating system is it? Does the Lambda invocation work with `LAMBDA_IGNORE_ARCHITECTURE=1` (see configuration https://docs.localstack.cloud/references/configuration/#lambda)? Further suggestions: *...