What is the semantic of the proxy_backed_total metric? #22
Answered
by
dormando
HMartyrossian
asked this question in
Q&A
-
What is the semantic of the proxy_backed_total metric? On a 2 core VM, mencached-proxy reports 4. |
Beta Was this translation helpful? Give feedback.
Answered by
dormando
May 15, 2025
Replies: 1 comment
-
Total number of backend objects the proxy created. Each worker thread will have one copy of each defined backend. By default we start 4 worker threads, so one backend would end up with 4. On a 2 core VM you probably want to start memcached with Keep an eye on |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
HMartyrossian
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Total number of backend objects the proxy created.
Each worker thread will have one copy of each defined backend. By default we start 4 worker threads, so one backend would end up with 4.
On a 2 core VM you probably want to start memcached with
-t 2
.Keep an eye on
doc/protocol.txt
and https://docs.memcached.org/ - I'll do another round of updates soon.