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
Now on kubernetes we are not sure when which memcache pod will get recreated? So how this configuration can be handled in that case? Does it seems to be good or?
Thank you,
The text was updated successfully, but these errors were encountered:
hi,
Currently we are using memcached 3 pods with mcrouter 3 pods in kubernetes. I am currently using this config
{ "pools": { "cold": { "servers": [ "memcached-0.memcached.dev.svc.cluster.local:11211", "memcached-1.memcached.dev.svc.cluster.local:11211", "memcached-2.memcached.dev.svc.cluster.local:11211", ] }, "warm": { "servers": [ "memcached-0.memcached.dev.svc.cluster.local:11211", "memcached-1.memcached.dev.svc.cluster.local:11211", "memcached-2.memcached.dev.svc.cluster.local:11211", ] } }, "route": { "type": "OperationSelectorRoute", "operation_policies": { "get": { "type": "WarmUpRoute", "cold": "AllSyncRoute|Pool|cold", "warm": "AllSyncRoute|Pool|warm", }, "add": { "type": "WarmUpRoute", "cold": "AllSyncRoute|Pool|cold", "warm": "AllSyncRoute|Pool|warm", }, "set": { "type": "WarmUpRoute", "cold": "AllSyncRoute|Pool|cold", "warm": "AllSyncRoute|Pool|warm", }, "delete": { "type": "WarmUpRoute", "cold": "AllSyncRoute|Pool|cold", "warm": "AllSyncRoute|Pool|warm", }, "gets": { "type": "WarmUpRoute", "cold": "AllSyncRoute|Pool|cold", "warm": "AllSyncRoute|Pool|warm", }, }, "default_policy": { "type": "AllSyncRoute", "children": [ "FailoverRoute|Pool|cold", "FailoverRoute|Pool|warm", ] } } }
Now on kubernetes we are not sure when which memcache pod will get recreated? So how this configuration can be handled in that case? Does it seems to be good or?
Thank you,
The text was updated successfully, but these errors were encountered: