ERROR: Connection issue EMFILE

0

getting random error on querying from nodejs lambda: ERROR getaddrinfo EMFILE neptune-server-instance

Any advice welcome

asked 3 years ago7266 views
1 Answer
0

EMFILE error means that the OS is denying your program to open more files/sockets. Please double check whether you are hitting following system limit in your lambda function [1] [2].

  1. /tmp directory storage: 512 MB
  2. File descriptors: 1,024

Few other things to check

  1. Are you closing connection after each invocation?
  2. What configuration your are using for your client? If you are using gremlin then what is your connection setting. May be you are opening too many connections than needed.

If all of this doesn't help then please share a minimal reproducer so that we can investigate the issue our side.

Thanks,
Ankit

[1] https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html
[2] https://github.com/vendia/serverless-express/issues/239

Edited by: AnkitGuptaAtAWS on Feb 1, 2021 6:59 AM

Edited by: AnkitGuptaAtAWS on Feb 1, 2021 7:00 AM

AWS
answered 3 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions