How to take Redis Cluster and master-slave backup using Redis Shake

Redis Cluster and master-slave backup using Redis Shake


We have talked about Redis in recent articles. In this part, we are going to talk about how we can take Redis cluster and master-slave backup. Let’s start by reading what is cluster and master-slave configurations in Redis. You can read about the difference between them here Now when we talk about backup we have

What is Copy on Write and where is it used?

Redis bgsave taking a lot of memory. Here is the reason.


In recent times, I was working with Redis clusters which have very high throughput. While doing this we came across a problem which was Redis bgsave was taking a lot of memory sometimes almost as the same memory as the data present in the memory. In this small writeup, we will see why this happened.

Key metrics to monitor in Redis and optimization settings

Key metrics to monitor in Redis and optimization settings


Hi everyone in our last post we talked about Redis monitoring using Prometheus and Grafana. When I posted this on a few forums I got a suggestion that I should write about key metrics to watch while monitoring Redis. So let’s start the article Key metrics to monitor in Redis and optimization settings. Below are

Redis monitoring using Prometheus and Grafana

Redis monitoring using Prometheus and Grafana


We have seen in one of the past articles about Redis clustering and how we can take backup and restore it. In this, we are going to see how we can monitor Redis nodes using Prometheus and Grafana. If you don’t know about Prometheus and Grafana read about it here. Now let’s see how we

Redis Cluster backup and restore.

Redis Cluster backup and restore.


Redis is an in-memory cache or key-value store. You can save the keys and values and access them very fast as it resides in memory. You can also persist the data in the disk as it provides an option for the same. One of the most famous ways to use Redis is its clustering mode.