Hello,
I am running a connection-heavy server (1,700 mailboxes, 1,200 activesync connections) on one machine. This has worked really well as it is pretty low volume (mostly for inter-user communication). I have continued to tweak various performance metrics to tweak out whatever I can. However, recently, a new error has started showing up that I can’t place:
docker logs -n 100 mailcowdockerized_sogo-mailcow_1 | grep UNKNOWN
Apr 9 14:10:55 35b46a50e7ee sogod [6765]: <0×0×5629cec9b950[SOGoCache]> an error occurred when caching value for key ‘<removed>+attributes’: “UNKNOWN READ FAILURE”
Apr 9 14:10:55 35b46a50e7ee sogod [6765]: <0×0×5629cec9b950[SOGoCache]> an error occurred when caching value for key ‘<removed>+attributes’: “UNKNOWN READ FAILURE”
Apr 9 14:10:55 35b46a50e7ee sogod [6765]: <0×0×5629cec9b950[SOGoCache]> an error occurred when caching value for key <removed>+defaults’: “UNKNOWN READ FAILURE”
Apr 9 14:10:55 35b46a50e7ee sogod [6765]: <0×0×5629cec9b950[SOGoCache]> an error occurred when caching value for key ‘<removed>+settings’: “UNKNOWN READ FAILURE”
Apr 9 14:10:55 35b46a50e7ee sogod [6765]: <0×0×5629cec9b950[SOGoCache]> an error occurred when caching value for key ‘<removed>+attributes’: “UNKNOWN READ FAILURE”
Apr 9 14:10:55 35b46a50e7ee sogod [6765]: <0×0×5629cec9b950[SOGoCache]> an error occurred when caching value for key ‘<removed>+attributes’: “UNKNOWN READ FAILURE”
Apr 9 14:10:55 35b46a50e7ee sogod [6765]: <0×0×5629cec9b950[SOGoCache]> an error occurred when caching value for key ‘<removed>+defaults’: “UNKNOWN READ FAILURE”
Apr 9 14:10:55 35b46a50e7ee sogod [6765]: <0×0×5629cec9b950[SOGoCache]> an error occurred when caching value for key ‘<removed>+settings’: “UNKNOWN READ FAILURE”
When I was looking into this last night, I noticed that I actually had two memcached servers - one from a previous version I hadn’t noticed! So I ran the instructions found here: mailcow/mailcow-dockerized2182
docker-compose down
docker rm -f $(docker ps -a -q)
docker-compose up -d
This removed the 5 or so old “mailcow-dockerized” instances, and I thought it might have solved this problem, but no go.
I have googled this error, and I’m only finding “UNKNOWN READ FAILURE” when talking about memcached. There isn’t much I can see to tweak here. Currently, this is an AWS instance running with 32GB of RAM + a 32GB swap, and 4 CPU. Like I said, things are very good with performance, just concerned about this new error popping up every few seconds.