GithubHelp home page GithubHelp logo

Comments (7)

agentzh avatar agentzh commented on August 17, 2024

Did the redis server get restarted at that time?

The most common reason for this socket error (returned from the operating system) is that the remote server is (temporarily) not listening on the unix domain socket.

Regards,
-agentzh

from lua-resty-redis.

rkearsley avatar rkearsley commented on August 17, 2024

it wasn't restarted to my knowledge
I will increase logging level and check further

thanks

from lua-resty-redis.

agentzh avatar agentzh commented on August 17, 2024

BTW, you may want to increase the backlog setting for the listening socket in the redis server. The redis server hardcodes the backlog value 511 in its source:

$ ack 511 src/
src/anet.c
265:    if (listen(s, 511) == -1) { /* the magic 511 constant is from nginx */

The accept() queue on your redis server side can easily overflow when your redis is really busy at some moments. Ironically, nginx does provide ways to adjust the backlog setting for its listening socket (that is, the backlog parameter for the listen configure directive).

from lua-resty-redis.

rkearsley avatar rkearsley commented on August 17, 2024

excellent I will definitely try that, I really bet that's the problem!
There may be an influx of connections when the redis replies which I cache in ngx.shared.dict expire, which could easily all be at the same time!
Never the less, I have managed to tidy my lua code a lot with regard to redis while trying to find the problem which is always good :)

from lua-resty-redis.

agentzh avatar agentzh commented on August 17, 2024

BTW, have you enabled the connection pool for redis? See

https://github.com/agentzh/lua-resty-redis#set_keepalive

It could help by saving lots of connect() and close() syscalls.

Also, I'm pondering adding a built-in wait queue to the cosockets to prevent such peaks of new connections when the frontend cache entries are expired.

Another thing you could probably do here is to use a shdict entry to limit concurrent fetches when some cache entry is expired.

from lua-resty-redis.

rkearsley avatar rkearsley commented on August 17, 2024

yeah I'm using set keepalive.. I could increase the keepalive idle timeout to be greater than shdict expire time also I suppose (currently it's less than) which would probably help
I forked redis and set the backlog to -1 which nginx also does apparently, since I'm using FreeBSD, can do this:

The sysctl(3) MIB variable kern.ipc.somaxconn specifies a hard limit on
 backlog; if a value greater than kern.ipc.somaxconn or less than zero is
 specified, backlog is silently forced to kern.ipc.somaxconn.

Will see how it goes like this 👍

from lua-resty-redis.

rkearsley avatar rkearsley commented on August 17, 2024

Hi
This issue was solved. I was using "KEYS" irresponsibly causing the redis worker to be busy for longer than a few seconds and then waiting new connections would build up and overflow the backlog

Many thanks as always!

from lua-resty-redis.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.