{"id":21034,"date":"2016-09-12T10:34:31","date_gmt":"2016-09-12T09:34:31","guid":{"rendered":"https:\/\/www.inovex.de\/?p=2117"},"modified":"2026-03-17T08:58:08","modified_gmt":"2026-03-17T07:58:08","slug":"redis-sentinel-make-your-dataset-highly-available","status":"publish","type":"post","link":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/","title":{"rendered":"Redis Sentinel: Make your dataset highly available"},"content":{"rendered":"<p>In previous blog articles we talked about the <a href=\"https:\/\/www.inovex.de\/redis-more-than-caching\/\" target=\"_blank\" rel=\"noopener\">basic Redis features<\/a> and learned how to <a href=\"https:\/\/www.inovex.de\/redis-backup\/\" target=\"_blank\" rel=\"noopener\">persist, backup and restore your dataset<\/a> in case of a disaster scenario. Today we want to introduce you to a more complex setup. In fact, you can teach your Redis instances to be highly available for your clients.<!--more--><\/p>\n<p>At this point the Sentinel jumps in. So what is this Sentinel stuff? The Sentinel process is a Redis Instance which was started with the &#8211;sentinel Option (or redis-sentinel binary). It needs a configuration file that tells the Sentinel which Redis master it should monitor.<\/p>\n<p>In short, these are the benefits of using Sentinel:<\/p>\n<ul>\n<li><strong>Monitoring:<\/strong> Sentinel constantly checks if the Redis master and its slave instances are working.<\/li>\n<li><strong>Notifications:<\/strong> It can notify the system administrators or other tools via an API if something happens to your Redis instances.<\/li>\n<li><strong>Automatic Failover:<\/strong> When Sentinel detects a failure of the master node it will start a failover where a slave is promoted to master. The additional slaves will be reconfigured automatically to use the new master. The application\/clients that are using the Redis setup will be informed about the new address to use for the connection.<\/li>\n<li><strong>Configuration provider:<\/strong> Sentinel can be used for service discovery. That means clients can connect to the Sentinel in order to ask for the current address of your Redis master. After a failover Sentinel will provide the new address.<\/li>\n<\/ul>\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_82_2 counter-hierarchy ez-toc-counter ez-toc-custom ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\"><p class=\"ez-toc-title\" style=\"cursor:inherit\"><\/p>\n<\/div><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/#Configuration-and-example-setup-with-three-nodes\" >Configuration and example setup with three nodes<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/#Maintainance\" >Maintainance<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/#Conclusion\" >Conclusion<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/#Read-on\" >Read on<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/#Join-us\" >Join us!<\/a><\/li><\/ul><\/nav><\/div>\n<h2><span class=\"ez-toc-section\" id=\"Configuration-and-example-setup-with-three-nodes\"><\/span>Configuration and example setup with three nodes<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>The Sentinel processes are a part of a distributed system. That means your Sentinel processes are working together. For a high availability setup we suggest using more than one Sentinel, as Sentinel itself should not be a single point of failure. It also improves the proper failure detection via quorum.<\/p>\n<p>Before you deploy Sentinel, consider the following facts. More in-depth information on the most important points can be found below:<\/p>\n<ul>\n<li>At least Three Sentinel instances are needed for a robust deployment.<\/li>\n<li>Separate your Sentinel instances with different VMs or servers.<\/li>\n<li>Due to the asynchronous replication of Redis the distributed setup does not guarantee that acknowledged writes are retained during failures.<\/li>\n<li>Your client-library needs to support Sentinel.<\/li>\n<li>Test your high availability setup from time to time in your test environment and even in production systems.<\/li>\n<li>Sentinel, Docker or other NAT\/Port Mapping technologies should only be mixed with care.<\/li>\n<\/ul>\n<p>A three node setup is a good start, so run your Redis Master and two Slaves before setting up the Sentinel processes. On each of your Redis Hosts you create the same Sentinel config (\/etc\/redis-sentinel.conf, depending on your Linux distribution), like so:<\/p>\n<pre class=\"lang:sh decode:true \" title=\"Sentinel configuration example\">sentinel monitor myHAsetup 192.168.1.29 6379 2\r\n\r\nsentinel down-after-milliseconds myHAsetup 6001\r\n\r\nsentinel failover-timeout myHAsetup 60000\r\n\r\nsentinel parallel-syncs myHAsetup 1\r\n\r\nbind ip-of-interface\r\n\r\n<\/pre>\n<p>Let&#8217;s dig deeper and see what these options do:<\/p>\n<ol>\n<li>This line tells Sentinel which master to monitor (myHAsetup). The Sentinel will find the host at 192.168.1.3:6379. The quorum for this setup is 2. The quorum is only used to detect failures: This number of Sentinels must agree about the fact that the master is not reachable. When a failure is detected, one Sentinel is elected as the leader who authorizes the failover. This happens when the majority of Sentinel processes vote for the leader.<\/li>\n<li>The time in milliseconds an instance is allowed be unreachable for a Sentinel (not answering to PINGs or replies with an error). After this time, the master is considered to be down.<\/li>\n<li>The timeout in milliseconds that Sentinel will wait after a failover before initiating a new failover.<\/li>\n<li>The number of slaves that can sync with the new master at the same time after a failover. The lower the number the longer the failover will need to complete. Using the slaves to serve old data to clients, you maybe don&#8217;t want to re-synchronize all slaves with the new master at the same time as there is a very short timeframe in which the slave stops while loading the bulk data from the master. In this case set it to 1.If this does not matter set it to the maximum of slaves that might be connected to the master.<\/li>\n<li>Listen IP, limited to one interface.<\/li>\n<\/ol>\n<p>After you set up the Sentinel configuration for your instances, start it via init script, systemd unit or simply via its binary (redis-server \/path\/to\/sentinel.conf &#8211;sentinel). The Sentinel processes will discover the master, slaves and other connected sentinels and the system is complete. Let&#8217;s see now what the setup looks like and what happens during a failover.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-large wp-image-2120\" src=\"https:\/\/www.inovex.de\/wp-content\/uploads\/2016\/08\/redis-sentinel-1024x576.png\" alt=\"redis-sentinel\" width=\"800\" height=\"450\" \/><\/p>\n<p>We have three Redis instances and three Sentinel instances:<\/p>\n<p>M1 = Master<\/p>\n<p>R1 = Replica 1 \/ Slave 1<\/p>\n<p>R2 = Replica 2 \/ Slave 2<\/p>\n<p>S1 = Sentinel 1<\/p>\n<p>S2 = Sentinel 2<\/p>\n<p>S3 = Sentinel 3<\/p>\n<p>Let&#8217;s check the status of the Sentinel: Via the option -p 26379 you connect directly to the Sentinel API.<\/p>\n<pre class=\"lang:sh decode:true \">redis-cli -p 26379 -h 192.168.1.29 info sentinel\r\n\r\n# Sentinel\r\n\r\nsentinel_masters:1\r\n\r\nsentinel_tilt:0\r\n\r\nsentinel_running_scripts:0\r\n\r\nsentinel_scripts_queue_length:0\r\n\r\nsentinel_simulate_failure_flags:0\r\n\r\nmaster0:name=myHAsetup,status=ok,address=192.168.1.29:6379,slaves=2,sentinels=3<\/pre>\n<p>As you see the Sentinels are monitoring one master \u201cmyHAsetup\u201c, their status is OK and you can see how many slaves and other Sentinels are discovered.<\/p>\n<pre class=\"lang:sh decode:true \">redis-cli -p 26379 -h 192.168.1.29 sentinel get-master-addr-by-name myHAsetup\r\n\r\n\"192.168.1.29\"\r\n\r\n\"6379\"<\/pre>\n<p>So far so good, everything looks fine. Now let&#8217;s see what happens when the master is unresponsive: We can simulate an outage by issuing the following command.<\/p>\n<pre class=\"lang:sh decode:true \">redis-cli -p 6379 -h 192.168.1.29 DEBUG sleep 30<\/pre>\n<p>This produces the following log file:<\/p>\n<pre class=\"lang:sh decode:true \">1.    3643:X 29 Jul 13:45:08.957 # +sdown master myHAsetup 192.168.1.29 6379\r\n\r\n2.  3643:X 29 Jul 13:45:09.328 # +new-epoch 1\r\n\r\n3.  3643:X 29 Jul 13:45:09.329 # +vote-for-leader 040e143e5bb2608cc1df4bb21c9da6dc728330ab 1\r\n\r\n4.  3643:X 29 Jul 13:45:10.051 # +odown master myHAsetup 192.168.1.29 6379 #quorum 3\/2\r\n\r\n5.  3643:X 29 Jul 13:45:10.051 # Next failover delay: I will not start a failover before Fri Jul 29 13:46:10 2016\r\n\r\n6.  3643:X 29 Jul 13:45:10.486 # +config-update-from sentinel c367ad28d070b7447c3bd9d0a6a0ab046bbc30fc 192.168.1.30 26379 @ myHAsetup 192.168.1.29 6379\r\n\r\n7.  3643:X 29 Jul 13:45:10.486 # +switch-master myHAsetup 192.168.1.29 6379 192.168.1.31 6379\r\n\r\n8.  3643:X 29 Jul 13:45:10.486 * +slave slave 192.168.1.30:6379 192.168.1.30 6379 @ myHAsetup 192.168.1.31 6379\r\n\r\n9.  3643:X 29 Jul 13:45:10.486 * +slave slave 192.168.1.29:6379 192.168.1.29 6379 @ myHAsetup 192.168.1.31 6379\r\n\r\n10. 3643:X 29 Jul 13:45:16.499 # +sdown slave 192.168.1.29:6379 192.168.1.29 6379 @ myHAsetup 192.168.1.31 6379\r\n\r\n11. 3643:X 29 Jul 13:45:32.435 # -sdown slave 192.168.1.29:6379 192.168.1.29 6379 @ myHAsetup 192.168.1.31 6379\r\n\r\n12. 3643:X 29 Jul 13:45:42.442 * +convert-to-slave slave 192.168.1.29:6379 192.168.1.29 6379 @ myHAsetup 192.168.1.31 6379<\/pre>\n<p>Here a short summary of what happens<\/p>\n<ol>\n<li>Failure is detected<\/li>\n<li>Config-Version Epoch is increased by +1<\/li>\n<li>Leader is elected<\/li>\n<li>Quorum check. 3 Sentinels see the master down<\/li>\n<li>Delay for the next possible failover, after the current one<\/li>\n<li>&#8211; 10. Failover to the new master, reconfiguration of the slave nodes (old master 192.168.1.29 is already marked as slave and down at the moment)<\/li>\n<li value=\"11\">Old master comes back to the setup (after hanging in DEBUG for 30 seconds)<\/li>\n<li>Old master is converted to slave and synchronizes to the new master.<\/li>\n<\/ol>\n<p>Another check with the Sentinel API confirms the new master:<\/p>\n<pre class=\"lang:sh decode:true \">redis-cli -p 26379 -h 192.168.1.29 sentinel get-master-addr-by-name myHAsetup\r\n\r\n\"192.168.1.31\"\r\n\r\n\"6379\"<\/pre>\n<p>At the end downtime sums up to around 7-8 seconds (6 to detect the failure + 1-2 seconds to fulfill the failover). With a stable network setup without flapping you might be able to reduce the failure detection from 6 seconds to 3 seconds, thus minimizing the downtime, during which no writes are accepted.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Maintainance\"><\/span>Maintainance<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>So how do you maintain such a setup? In general the procedure is similar to other high availability setups: Before you start, take a backup of your keyspace with an <a href=\"https:\/\/www.inovex.de\/redis-backup\/\" target=\"_blank\" rel=\"noopener\">RDB snapshot<\/a> and copy it to save place, e.g. by updating the redis.conf and increasing the &#8218;maxmemory&#8216; parameter or modifying the save parameter for the RDB snapshot engine.<\/p>\n<ul>\n<li>stop Redis at one slave node<\/li>\n<li>update the config file<\/li>\n<li>start Redis<\/li>\n<li>wait until the node is synchronized properly<\/li>\n<li>repeat for the second slave<\/li>\n<li>repeat for the master node (causing a failover)<\/li>\n<li>change complete<\/li>\n<\/ul>\n<p>Another example, where you want to update the redis-package:<\/p>\n<ul>\n<li>check the change-log from the new Redis version, if there was no harmful change you can go on<\/li>\n<li>backup your keyspace, best would be a RDB snapshot<\/li>\n<li>stop Redis and Sentinel<\/li>\n<li>copy both config files to a save place on the server<\/li>\n<li>update the Redis package<\/li>\n<li>copy both configs from save place to the config-dir (\/etc\/)<\/li>\n<li>start Sentinel<\/li>\n<li>check whether the updated Sentinel starts and is considered active by the other Sentinels<\/li>\n<li>if not, check the logfile for the cause of the issue<\/li>\n<li>if yes, start Redis and check the startup and logfile if everything looks fine<\/li>\n<li>repeat for the other slave, and then for the master.<\/li>\n<li>update complete<\/li>\n<\/ul>\n<p>After these two examples we inspect the Sentinel with its API:<\/p>\n<pre class=\"lang:sh decode:true \">redis-cli -p 26379 -h 192.168.1.29 PING\r\n\r\nPONG<\/pre>\n<p>This is very simple \u2013 but shows that the Sentinel works properly. To bring this article to a close, let&#8217;s take a look at some advanced commands. They all follow roughly the same pattern:<\/p>\n<pre class=\"lang:sh decode:true \">redis-cli -p 26379 -h 192.168.1.29 sentinel&lt;options\/values&gt;<\/pre>\n\n<table id=\"tablepress-16\" class=\"tablepress tablepress-id-16\">\n<thead>\n<tr class=\"row-1\">\n\t<th class=\"column-1\">redis-cli info<\/th><th class=\"column-2\">Complete info about the redis-instance<\/th>\n<\/tr>\n<\/thead>\n<tbody class=\"row-striping row-hover\">\n<tr class=\"row-2\">\n\t<td class=\"column-1\">redis-cli info server<\/td><td class=\"column-2\">Server Information, cersions, configs, binary<\/td>\n<\/tr>\n<tr class=\"row-3\">\n\t<td class=\"column-1\">redis-cli info clients<\/td><td class=\"column-2\">Connected clients<\/td>\n<\/tr>\n<tr class=\"row-4\">\n\t<td class=\"column-1\">redis-cli info memory<\/td><td class=\"column-2\">Statistics about memory usage and limits<\/td>\n<\/tr>\n<tr class=\"row-5\">\n\t<td class=\"column-1\">redis-cli info persistence<\/td><td class=\"column-2\">Info about RDB and AOF<\/td>\n<\/tr>\n<tr class=\"row-6\">\n\t<td class=\"column-1\">redis-cli info stats<\/td><td class=\"column-2\">Connection, network, keyspace statistics<\/td>\n<\/tr>\n<tr class=\"row-7\">\n\t<td class=\"column-1\">redis-cli info replication<\/td><td class=\"column-2\">Replication settings and status<\/td>\n<\/tr>\n<tr class=\"row-8\">\n\t<td class=\"column-1\">redis-cli info cpu<\/td><td class=\"column-2\">CPU utilization<\/td>\n<\/tr>\n<tr class=\"row-9\">\n\t<td class=\"column-1\">redis-cli info cluster<\/td><td class=\"column-2\">Cluster settings and status<\/td>\n<\/tr>\n<tr class=\"row-10\">\n\t<td class=\"column-1\">redis-cli info keyspace<\/td><td class=\"column-2\">Display dbs and number of keys<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<!-- #tablepress-16 from cache -->\n<h2><span class=\"ez-toc-section\" id=\"Conclusion\"><\/span>Conclusion<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>This was a short overview of the concept of Sentinel, the configuration and maintenance of the system. For more, have a look at the <a href=\"http:\/\/redis.io\/topics\/sentinel\" target=\"_blank\" rel=\"noopener\">sentinel description page<\/a>. After all there is lot more to discover.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Read-on\"><\/span>Read on<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Our upcoming articles will cover the creation of a Redis cluster and the advanced usage of the Redis CLI and monitoring capabilities. Until then have a <a href=\"https:\/\/www.inovex.de\/en\/our-services\/data-centre-automation\/\" target=\"_blank\" rel=\"noopener\">look at our website<\/a> to find out about the services we offer in data center automation, write an email to <a href=\"mailto:info@inovex.de\" target=\"_blank\" rel=\"noopener\">info@inovex.de<\/a> for more information or call <a href=\"tel:+497216190210\">+49 721 619 021-0<\/a>.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Join-us\"><\/span>Join us!<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Looking for a job where you can work with cutting edge technology on a daily basis? We&#8217;re currently hiring Linux Systems Engineers (m\/w\/d) in Karlsruhe, Pforzheim, Munich, Cologne and Hamburg!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In previous blog articles we talked about the basic Redis features and learned how to persist, backup and restore your dataset in case of a disaster scenario. Today we want to introduce you to a more complex setup. In fact, you can teach your Redis instances to be highly available for your clients.<\/p>\n","protected":false},"author":47,"featured_media":1866,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"ep_exclude_from_search":false,"footnotes":""},"tags":[71],"service":[414],"coauthors":[{"id":47,"display_name":"Christoph Stich","user_nicename":"cstich"}],"class_list":["post-21034","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","tag-cloud","service-cloud"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Redis Sentinel: Make your dataset highly available - inovex GmbH<\/title>\n<meta name=\"description\" content=\"I want to introduce you to a more complex Redis Sentinel setup. In fact, you can teach your Redis instances to be highly available for your clients.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Redis Sentinel: Make your dataset highly available - inovex GmbH\" \/>\n<meta property=\"og:description\" content=\"I want to introduce you to a more complex Redis Sentinel setup. In fact, you can teach your Redis instances to be highly available for your clients.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/\" \/>\n<meta property=\"og:site_name\" content=\"inovex GmbH\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inovexde\" \/>\n<meta property=\"article:published_time\" content=\"2016-09-12T09:34:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-17T07:58:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inovex.de\/wp-content\/uploads\/2016\/07\/redis-artikelbild.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2300\" \/>\n\t<meta property=\"og:image:height\" content=\"678\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Christoph Stich\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.inovex.de\/wp-content\/uploads\/2016\/07\/redis-artikelbild-1024x302.png\" \/>\n<meta name=\"twitter:creator\" content=\"@inovexgmbh\" \/>\n<meta name=\"twitter:site\" content=\"@inovexgmbh\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christoph Stich\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"8\u00a0Minuten\" \/>\n\t<meta name=\"twitter:label3\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data3\" content=\"Christoph Stich\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/redis-sentinel-make-your-dataset-highly-available\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/redis-sentinel-make-your-dataset-highly-available\\\/\"},\"author\":{\"name\":\"Christoph Stich\",\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/#\\\/schema\\\/person\\\/683665a7244d27a96c0d5e561c777c11\"},\"headline\":\"Redis Sentinel: Make your dataset highly available\",\"datePublished\":\"2016-09-12T09:34:31+00:00\",\"dateModified\":\"2026-03-17T07:58:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/redis-sentinel-make-your-dataset-highly-available\\\/\"},\"wordCount\":1372,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/redis-sentinel-make-your-dataset-highly-available\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.inovex.de\\\/wp-content\\\/uploads\\\/2016\\\/07\\\/redis-artikelbild.png\",\"keywords\":[\"Cloud\"],\"articleSection\":[\"English Content\",\"General\",\"Infrastructure\"],\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/redis-sentinel-make-your-dataset-highly-available\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/redis-sentinel-make-your-dataset-highly-available\\\/\",\"url\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/redis-sentinel-make-your-dataset-highly-available\\\/\",\"name\":\"Redis Sentinel: Make your dataset highly available - inovex GmbH\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/redis-sentinel-make-your-dataset-highly-available\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/redis-sentinel-make-your-dataset-highly-available\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.inovex.de\\\/wp-content\\\/uploads\\\/2016\\\/07\\\/redis-artikelbild.png\",\"datePublished\":\"2016-09-12T09:34:31+00:00\",\"dateModified\":\"2026-03-17T07:58:08+00:00\",\"description\":\"I want to introduce you to a more complex Redis Sentinel setup. In fact, you can teach your Redis instances to be highly available for your clients.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/redis-sentinel-make-your-dataset-highly-available\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/redis-sentinel-make-your-dataset-highly-available\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/redis-sentinel-make-your-dataset-highly-available\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.inovex.de\\\/wp-content\\\/uploads\\\/2016\\\/07\\\/redis-artikelbild.png\",\"contentUrl\":\"https:\\\/\\\/www.inovex.de\\\/wp-content\\\/uploads\\\/2016\\\/07\\\/redis-artikelbild.png\",\"width\":2300,\"height\":678,\"caption\":\"Redis Logo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/redis-sentinel-make-your-dataset-highly-available\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Redis Sentinel: Make your dataset highly available\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/#website\",\"url\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/\",\"name\":\"inovex GmbH\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/#organization\",\"name\":\"inovex GmbH\",\"url\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.inovex.de\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/inovex-logo-16-9-1.png\",\"contentUrl\":\"https:\\\/\\\/www.inovex.de\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/inovex-logo-16-9-1.png\",\"width\":1921,\"height\":1081,\"caption\":\"inovex GmbH\"},\"image\":{\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/inovexde\",\"https:\\\/\\\/x.com\\\/inovexgmbh\",\"https:\\\/\\\/www.instagram.com\\\/inovexlife\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/inovex\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UC7r66GT14hROB_RQsQBAQUQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/#\\\/schema\\\/person\\\/683665a7244d27a96c0d5e561c777c11\",\"name\":\"Christoph Stich\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9ee99218637f3f76660bc55d24e77c723b73eb0c36ac3db82f17d32183b08005?s=96&d=retro&r=g57f6cb0c101a17628911877b9968c8c5\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9ee99218637f3f76660bc55d24e77c723b73eb0c36ac3db82f17d32183b08005?s=96&d=retro&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9ee99218637f3f76660bc55d24e77c723b73eb0c36ac3db82f17d32183b08005?s=96&d=retro&r=g\",\"caption\":\"Christoph Stich\"},\"url\":\"https:\\\/\\\/www.inovex.de\\\/de\\\/blog\\\/author\\\/cstich\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Redis Sentinel: Make your dataset highly available - inovex GmbH","description":"I want to introduce you to a more complex Redis Sentinel setup. In fact, you can teach your Redis instances to be highly available for your clients.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/","og_locale":"de_DE","og_type":"article","og_title":"Redis Sentinel: Make your dataset highly available - inovex GmbH","og_description":"I want to introduce you to a more complex Redis Sentinel setup. In fact, you can teach your Redis instances to be highly available for your clients.","og_url":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/","og_site_name":"inovex GmbH","article_publisher":"https:\/\/www.facebook.com\/inovexde","article_published_time":"2016-09-12T09:34:31+00:00","article_modified_time":"2026-03-17T07:58:08+00:00","og_image":[{"width":2300,"height":678,"url":"https:\/\/www.inovex.de\/wp-content\/uploads\/2016\/07\/redis-artikelbild.png","type":"image\/png"}],"author":"Christoph Stich","twitter_card":"summary_large_image","twitter_image":"https:\/\/www.inovex.de\/wp-content\/uploads\/2016\/07\/redis-artikelbild-1024x302.png","twitter_creator":"@inovexgmbh","twitter_site":"@inovexgmbh","twitter_misc":{"Verfasst von":"Christoph Stich","Gesch\u00e4tzte Lesezeit":"8\u00a0Minuten","Written by":"Christoph Stich"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/#article","isPartOf":{"@id":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/"},"author":{"name":"Christoph Stich","@id":"https:\/\/www.inovex.de\/de\/#\/schema\/person\/683665a7244d27a96c0d5e561c777c11"},"headline":"Redis Sentinel: Make your dataset highly available","datePublished":"2016-09-12T09:34:31+00:00","dateModified":"2026-03-17T07:58:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/"},"wordCount":1372,"commentCount":2,"publisher":{"@id":"https:\/\/www.inovex.de\/de\/#organization"},"image":{"@id":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inovex.de\/wp-content\/uploads\/2016\/07\/redis-artikelbild.png","keywords":["Cloud"],"articleSection":["English Content","General","Infrastructure"],"inLanguage":"de","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/","url":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/","name":"Redis Sentinel: Make your dataset highly available - inovex GmbH","isPartOf":{"@id":"https:\/\/www.inovex.de\/de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/#primaryimage"},"image":{"@id":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inovex.de\/wp-content\/uploads\/2016\/07\/redis-artikelbild.png","datePublished":"2016-09-12T09:34:31+00:00","dateModified":"2026-03-17T07:58:08+00:00","description":"I want to introduce you to a more complex Redis Sentinel setup. In fact, you can teach your Redis instances to be highly available for your clients.","breadcrumb":{"@id":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/#primaryimage","url":"https:\/\/www.inovex.de\/wp-content\/uploads\/2016\/07\/redis-artikelbild.png","contentUrl":"https:\/\/www.inovex.de\/wp-content\/uploads\/2016\/07\/redis-artikelbild.png","width":2300,"height":678,"caption":"Redis Logo"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inovex.de\/de\/blog\/redis-sentinel-make-your-dataset-highly-available\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inovex.de\/de\/"},{"@type":"ListItem","position":2,"name":"Redis Sentinel: Make your dataset highly available"}]},{"@type":"WebSite","@id":"https:\/\/www.inovex.de\/de\/#website","url":"https:\/\/www.inovex.de\/de\/","name":"inovex GmbH","description":"","publisher":{"@id":"https:\/\/www.inovex.de\/de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inovex.de\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/www.inovex.de\/de\/#organization","name":"inovex GmbH","url":"https:\/\/www.inovex.de\/de\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/www.inovex.de\/de\/#\/schema\/logo\/image\/","url":"https:\/\/www.inovex.de\/wp-content\/uploads\/2021\/03\/inovex-logo-16-9-1.png","contentUrl":"https:\/\/www.inovex.de\/wp-content\/uploads\/2021\/03\/inovex-logo-16-9-1.png","width":1921,"height":1081,"caption":"inovex GmbH"},"image":{"@id":"https:\/\/www.inovex.de\/de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inovexde","https:\/\/x.com\/inovexgmbh","https:\/\/www.instagram.com\/inovexlife\/","https:\/\/www.linkedin.com\/company\/inovex","https:\/\/www.youtube.com\/channel\/UC7r66GT14hROB_RQsQBAQUQ"]},{"@type":"Person","@id":"https:\/\/www.inovex.de\/de\/#\/schema\/person\/683665a7244d27a96c0d5e561c777c11","name":"Christoph Stich","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/secure.gravatar.com\/avatar\/9ee99218637f3f76660bc55d24e77c723b73eb0c36ac3db82f17d32183b08005?s=96&d=retro&r=g57f6cb0c101a17628911877b9968c8c5","url":"https:\/\/secure.gravatar.com\/avatar\/9ee99218637f3f76660bc55d24e77c723b73eb0c36ac3db82f17d32183b08005?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9ee99218637f3f76660bc55d24e77c723b73eb0c36ac3db82f17d32183b08005?s=96&d=retro&r=g","caption":"Christoph Stich"},"url":"https:\/\/www.inovex.de\/de\/blog\/author\/cstich\/"}]}},"_links":{"self":[{"href":"https:\/\/www.inovex.de\/de\/wp-json\/wp\/v2\/posts\/21034","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inovex.de\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inovex.de\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inovex.de\/de\/wp-json\/wp\/v2\/users\/47"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inovex.de\/de\/wp-json\/wp\/v2\/comments?post=21034"}],"version-history":[{"count":2,"href":"https:\/\/www.inovex.de\/de\/wp-json\/wp\/v2\/posts\/21034\/revisions"}],"predecessor-version":[{"id":66596,"href":"https:\/\/www.inovex.de\/de\/wp-json\/wp\/v2\/posts\/21034\/revisions\/66596"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.inovex.de\/de\/wp-json\/wp\/v2\/media\/1866"}],"wp:attachment":[{"href":"https:\/\/www.inovex.de\/de\/wp-json\/wp\/v2\/media?parent=21034"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inovex.de\/de\/wp-json\/wp\/v2\/tags?post=21034"},{"taxonomy":"service","embeddable":true,"href":"https:\/\/www.inovex.de\/de\/wp-json\/wp\/v2\/service?post=21034"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.inovex.de\/de\/wp-json\/wp\/v2\/coauthors?post=21034"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}