Why i am getting too many files open error?

hello,

I’m using node js client when start read request to server getting this error, AerospikeError: Too many open files: BB9E08BECDA6618. what I have to do?

Screenshot from 2017-11-04 13-17-40

Thanks

209.58.139.152 has reached connection limit likely. Provide following from that node during similar circumstances (try to get the error while running these): lsof and ss -tunap

These can be ran at any time to find the upper limits: ulimit -a ulimit -Hn ulimit -Sn

1 Like

Hi @Ashu,

Actually, this is a client side error. The error is raised when the client tries to open a new socket file descriptor. You should check the file descriptor limits on the machine where the client runs and increase them if necessary.

Cheers, Jan

1 Like