You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ../redis.socket places the socket in the data directory instead of next to the dump.rdb file. The locale-collate setting should be unneeded for this, but I haven't checked if it is relevant for UDS.
The change in the readiness probe is needed because the current command, ${config.package}/bin/redis-cli -p ${toString config.port} ping relies on TCP being active. If setup properly, this should probably perform the same ping, but through the socket.
It would be nice if there would be an option like uds = "data/redis.socket" to take care of all of this. Please let me know what you think :)
The text was updated successfully, but these errors were encountered:
Redis has the option to connect via unix domain sockets. I have such a setup running with
The
../redis.socket
places the socket in the data directory instead of next to thedump.rdb
file. Thelocale-collate
setting should be unneeded for this, but I haven't checked if it is relevant for UDS.The change in the readiness probe is needed because the current command,
${config.package}/bin/redis-cli -p ${toString config.port} ping
relies on TCP being active. If setup properly, this should probably perform the same ping, but through the socket.It would be nice if there would be an option like
uds = "data/redis.socket"
to take care of all of this. Please let me know what you think :)The text was updated successfully, but these errors were encountered: