How to Autoscale (add a node) Memcached cluster?

0

Hi, I am using Memcached cluster with one node. I did setup an alarms which will kickoff either 50% CPU or 50% Memory. Can I add a node when alarm gets triggered using auto scaling? fyi: I'm using Terraform to build my AWS infrastructure. Thanks in advance.

Ajju
preguntada hace un año306 visualizaciones
1 Respuesta
0
Respuesta aceptada

You can not directly scale your memcached cluster from CloudWatch. If it would be Redis, then application auto scaling would be the easy solution. Fortunately there is no problem that can not be solved with bit of custom code and Lambda function. On high-level it would go like this; CloudWatch alarm gets triggered -> CloudWatch Events rule matches the alarm -> Lambda function is triggered to add a node to the cluster. Similar case is described in below blog post.

https://aws.amazon.com/blogs/mt/customize-amazon-cloudwatch-alarm-notifications-to-your-local-time-zone-part-1/ https://docs.aws.amazon.com/autoscaling/application/userguide/what-is-application-auto-scaling.html

Ps. Adding nodes to a Memcached cluster increases the number of your cluster's partitions. When you change the number of partitions in a cluster some of your key spaces need to be remapped so that they are mapped to the right node. Remapping key spaces temporarily increases the number of cache misses on the cluster.

profile picture
EXPERTO
Kallu
respondido hace un año

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas