{"id":2522,"date":"2022-10-06T06:33:11","date_gmt":"2022-10-06T11:33:11","guid":{"rendered":"https:\/\/wiki-cloud.co\/?p=2522"},"modified":"2025-10-08T15:22:49","modified_gmt":"2025-10-08T20:22:49","slug":"high-availability-with-amazon-rds-multi-az","status":"publish","type":"post","link":"https:\/\/wiki-cloud.co\/en\/2022\/10\/high-availability-with-amazon-rds-multi-az\/","title":{"rendered":"High availability with Amazon RDS Multi-AZ"},"content":{"rendered":"<p style=\"text-align: justify;\">AWS presents high availability schemes for Amazon RDS called Multi-AZ where you can have one or two standby database instances, taking advantage of the AWS Global Infrastructure that has Availability Zones, where customers can deploy their workloads in several availability zones within a region and thus increase fault tolerance. When the deployment has one standby DB instance, it is called a&nbsp;<strong><em>Multi-AZ DB instance deployment<\/em><\/strong>. When the deployment has two standby DB instances, it is called&nbsp;<strong><em>Multi-AZ database cluster implementation<\/em><\/strong>.<\/p>\n<p style=\"text-align: justify;\">Next, we will detail each of these implementations.<\/p>\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Multi-AZ DB Instance Deployments<\/strong><\/span><\/p>\n<p style=\"text-align: justify;\">A Multi-AZ DB instance deployment automatically creates a primary and a replica database (DB) instance in a different AZ, where it synchronously keeps the data in both instances up to date. When an error is detected, Amazon RDS automatically failover to a standby instance without the need for manual intervention. This replica is not for read traffic.<\/p>\n<p style=\"text-align: center;\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2022\/10\/article_image_high_availability_with_amazon_rds_multiAZ_01.png\" width=\"823\" height=\"546\" \/><\/p>\n<p style=\"text-align: center;\">Image 1 \u2013 Multi-AZ DB Instance Deployment Architecture<\/p>\n<p style=\"text-align: justify;\">How would be an appropriate architecture for an RDS High Availability scheme?<\/p>\n<p style=\"text-align: justify;\">In the following example there is a high availability zone a and b, where an application server is deployed in each one and there is an RDS database, for this an auto-scaling group must be created that is capable of growing or shrinking In order to have requests according to the demand, a load balancer must also be added to distribute the requests according to the traffic and the processing of the application servers. In the case of failure of an application server, a new one is immediately created and the application continues to be available, but if the RDS database fails, the application will no longer be available. See Image 2.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2022\/10\/article_image_high_availability_with_amazon_rds_multiAZ_02.png\" width=\"726\" height=\"587\" \/><\/p>\n<p style=\"text-align: center;\">Image 2 \u2013 Multi-AZ DB Instance Deployment<\/p>\n<p style=\"text-align: justify;\">To solve this situation with the database, AWS has incorporated a high availability option that can be enabled from the management console by activating the multi AZ deployment or in different availability zones, you can also use the AWS CLI or the Amazon RDS API, this option creates a secondary DB instance exactly like the primary with the same instance type and EBS volume configuration in another Availability Zone, then configures synchronous replication keeping an exact duplicate of the data on the replica on standby. See Image 3.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2022\/10\/article_image_high_availability_with_amazon_rds_multiAZ_03.png\" width=\"723\" height=\"584\" \/><\/p>\n<p style=\"text-align: center;\">Image 3 \u2013 Multi-AZ DB Instance Deployment<\/p>\n<p style=\"text-align: justify;\">If the primary RDS instance fails, the Amazon RDS monitor will assign the standby instance as the primary until the original primary recovers, and requests from the application servers will be redirected to the new primary DB instance. See Image 4.<\/p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2022\/10\/article_image_high_availability_with_amazon_rds_multiAZ_04.png\" width=\"722\" height=\"582\" \/><\/strong><\/span><\/p>\n<p style=\"text-align: center;\">Image 4 \u2013 Multi-AZ DB Instance Deployment<\/p>\n<p><span style=\"text-decoration: underline;\"><strong>Multi-AZ Database Cluster Deployments<\/strong><\/span><\/p>\n<p style=\"text-align: justify;\">A Multi-AZ DB cluster deployment is a highly available Amazon RDS deployment mode with two readable standby DB instances. A Multi-AZ DB cluster has one writer DB instance and two reader DB instances in three separate Availability Zones in the same AWS Region. Multi-AZ DB clusters provide high availability, increased capacity for read workloads, and lower write latency compared to Multi-AZ DB instance deployments.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2022\/10\/article_image_high_availability_with_amazon_rds_multiAZ_05.png\" width=\"797\" height=\"527\" \/><\/p>\n<p style=\"text-align: center;\">Image 5 \u2013 Multi-AZ Database Cluster Architecture<\/p>\n<p style=\"text-align: justify;\">With a Multi-AZ DB cluster, Amazon RDS replicates data from the writer's DB instance to both reader DB instances using the native replication capabilities of the DB engine. When a change is made to the writer DB instance, it is pushed to every reader DB instance. The acknowledgment of at least one reader database instance is required for a change to be committed.<\/p>\n<p style=\"text-align: justify;\">Reader DB instances act as automatic failover targets and also serve read traffic to increase applications read performance. If an outage occurs on the writer DB instance, RDS manages the failover to one of the reader DB instances. RDS does this based on which reader's database instance has the most recent change log.<\/p>\n<p style=\"text-align: justify;\">Multi-AZ DB clusters typically have lower write latency compared to Multi-AZ DB instance deployments. They also allow read-only workloads to run on reader DB instances. The RDS console displays the Availability Zone of the writer's DB instance and the Availability Zones of the reader's DB instances. Multi-AZ DB clusters are currently only available in certain AWS Regions.<\/p>\n<p style=\"text-align: justify;\">To take into account some considerations, see the following comparative table.<\/p>\n<p><span style=\"text-decoration: underline;\"><strong>Comparison Table<\/strong><\/span><\/p>\n<table>\n<tbody>\n<tr>\n<td style=\"text-align: center;\">\n<p><strong>Feature<\/strong><\/p>\n<\/td>\n<td style=\"text-align: center;\"><strong>Single-AZ<\/strong><\/td>\n<td style=\"text-align: center;\"><strong>Multi-AZ with one standby<\/strong><\/td>\n<td style=\"text-align: center;\"><strong>Multi-AZ with two readable standbys<\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><strong>Available engines<\/strong><\/td>\n<td style=\"text-align: justify;\">\n<ul>\n<li>Amazon RDS for MariaDB<\/li>\n<li>Amazon RDS for MySQL<\/li>\n<li>Amazon RDS for PostgreSQL<\/li>\n<li>Amazon RDS for Oracle<\/li>\n<li>Amazon RDS for SQL Server<\/li>\n<\/ul>\n<\/td>\n<td style=\"text-align: justify;\">\n<ul>\n<li>Amazon RDS for MariaDB<\/li>\n<li>Amazon RDS for MySQL<\/li>\n<li>Amazon RDS for PostgreSQL<\/li>\n<li>Amazon RDS for Oracle<\/li>\n<li>Amazon RDS for SQL Server<\/li>\n<\/ul>\n<\/td>\n<td style=\"text-align: justify;\">\n<ul>\n<li>Amazon RDS for MySQL<\/li>\n<li>Amazon RDS for PostgreSQL<\/li>\n<\/ul>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><strong>Additional Read capacity<\/strong><\/td>\n<td style=\"text-align: justify;\">None: the read capacity is limited to your primary.<\/td>\n<td style=\"text-align: justify;\">None: Your standby DB instance is only a passive failover target for high availability.<\/td>\n<td style=\"text-align: justify;\">\n<ul>\n<li>Two standby DB instances act as failover targets and serve read traffic.<\/li>\n<li>Read capacity is determined by the overhead of write transactions from the primary.<\/li>\n<\/ul>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><strong>Lower latency (higher throughput) for transaction commits<\/strong><\/td>\n<td>&nbsp;<\/td>\n<td>&nbsp;<\/td>\n<td style=\"text-align: justify;\">Up to 2x faster transaction commits compared to Amazon RDS Multi-AZ with one standby.<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><strong>Automatic failover duration<\/strong><\/td>\n<td>\n<ul>\n<li>Not available: a user, a user-initiated point-in-time-restore operation will be required.<\/li>\n<li>This operation can take several hours to complete.<\/li>\n<li>Any data updates that occurred after the latest restorable time (typically within the last 5 minutes) will not be available<\/li>\n<\/ul>\n<\/td>\n<td>\n<ul>\n<li>A new primary is available to serve your new workload in as quickly as 60 seconds.<\/li>\n<li>Failover time is independent of write throughput.<\/li>\n<\/ul>\n<\/td>\n<td>\n<ul>\n<li>A new primary is available to serve your new workload in typically under 35 seconds.<\/li>\n<li>Failover time depends on length of replica lag.<\/li>\n<\/ul>\n<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><strong>Higher resiliency to AZ outage<\/strong><\/td>\n<td>None: in the event of an AZ failure, your risk data loss and hours of failover time.<\/td>\n<td>In the event of an AZ failure, your workload will automatically failover to the up-to-date standby.<\/td>\n<td>In the event of a failure, one of the two remaining standbys will takeover and serve the workload (writes) from the primary.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><span style=\"text-decoration: underline;\"><strong>AWS Databases free tier<\/strong><\/span><\/p>\n<table border=\"0\">\n<tbody>\n<tr>\n<td>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2021\/09\/article_image_aws_database_services_18.png\" width=\"775\" height=\"635\" \/><\/p>\n<\/td>\n<td>\n<p style=\"text-align: justify;\">The AWS Free Tier offers users an opportunity to explore products for free, with offers including products that are always free, free for 12 months, and short-term free trials. AWS offers the widest selection of purpose-built databases, allowing you to save, grow, and innovate faster.<\/p>\n<p style=\"text-align: justify;\">Build database solutions using <a href=\"https:\/\/aws.amazon.com\/free\/database\/?nc1=h_ls\" target=\"_blank\" rel=\"noopener\">these product offerings<\/a> of the AWS Free Tier.<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p style=\"text-align: justify;\">To obtain updated information on AWS database services, I invite you to follow their page \"<a href=\"https:\/\/www.linkedin.com\/showcase\/aws-databases\/\" target=\"_blank\" rel=\"noopener\">AWS Databases &amp; Analytics<\/a>\u201d on Linkedin.<\/p>\n<p style=\"text-align: justify;\">I hope this information is useful.<\/p>\n\n\n\n<p><strong>Share:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-social-links is-style-logos-only is-layout-flex wp-block-social-links-is-layout-flex\">\n\n\n\n\n\n\n\n\n\n\n\n<\/ul>\n\n\n\n<p><strong>Follow us:<\/strong><\/p>\n\n\n<div class=\"wp-block-coblocks-social wp-block-coblocks-social-profiles is-style-icon-and-text has-colors has-button-size-med\"><ul><li><a href=\"https:\/\/www.facebook.com\/groups\/wikicloud\" title=\"Facebook\" class=\"wp-block-button__link wp-block-coblocks-social__button wp-block-coblocks-social__button--facebook has-padding\" style=\"border-radius:40px\" target=\"_blank\" rel=\"noopener noreferrer\"><span class=\"wp-block-coblocks-social__icon\"><\/span><span class=\"wp-block-coblocks-social__text\">Facebook<\/span><\/a><\/li><li><a href=\"https:\/\/twitter.com\/johnbulla\" title=\"Twitter account\" class=\"wp-block-button__link wp-block-coblocks-social__button wp-block-coblocks-social__button--twitter has-padding\" style=\"border-radius:40px\" target=\"_blank\" rel=\"noopener noreferrer\"><span class=\"wp-block-coblocks-social__icon\"><\/span><span class=\"wp-block-coblocks-social__text\">Twitter account<\/span><\/a><\/li><li><a href=\"https:\/\/www.linkedin.com\/in\/johnbulla\/\" title=\"Linkedin\" class=\"wp-block-button__link wp-block-coblocks-social__button wp-block-coblocks-social__button--linkedin has-padding\" style=\"border-radius:40px\" target=\"_blank\" rel=\"noopener noreferrer\"><span class=\"wp-block-coblocks-social__icon\"><\/span><span class=\"wp-block-coblocks-social__text\">Linkedin<\/span><\/a><\/li><li><a href=\"https:\/\/www.youtube.com\/user\/johnbulla\" title=\"YouTube\" class=\"wp-block-button__link wp-block-coblocks-social__button wp-block-coblocks-social__button--youtube has-padding\" style=\"border-radius:40px\" target=\"_blank\" rel=\"noopener noreferrer\"><span class=\"wp-block-coblocks-social__icon\"><\/span><span class=\"wp-block-coblocks-social__text\">YouTube<\/span><\/a><\/li><\/ul><\/div>\n\n\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>AWS presents high availability schemes for Amazon RDS called Multi-AZ where you can have one or two standby database instances, taking advantage of the AWS Global Infrastructure that has Availability Zones, where customers can deploy their workloads in several availability zones within a region and thus increase fault tolerance.<\/p>","protected":false},"author":1,"featured_media":2527,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","footnotes":""},"categories":[78],"tags":[],"class_list":["post-2522","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-aws"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Alta disponibilidad con Amazon RDS Multi-AZ - Wiki Cloud<\/title>\n<meta name=\"description\" content=\"AWS presenta esquemas de alta disponibilidad para Amazon RDS denominado Multi-AZ donde se pueden tener una o dos instancias de base de datos en espera, aprovechando la Infraestructura global de AWS que cuenta con zonas de disponibilidad donde los clientes pueden desplegar sus cargas de trabajo en varias zonas de disponibilidad dentro una regi\u00f3n y de esta forma incrementar la tolerancia a fallos.\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Alta disponibilidad con Amazon RDS Multi-AZ - Wiki Cloud\" \/>\n<meta property=\"og:description\" content=\"AWS presenta esquemas de alta disponibilidad para Amazon RDS denominado Multi-AZ donde se pueden tener una o dos instancias de base de datos en espera, aprovechando la Infraestructura global de AWS que cuenta con zonas de disponibilidad donde los clientes pueden desplegar sus cargas de trabajo en varias zonas de disponibilidad dentro una regi\u00f3n y de esta forma incrementar la tolerancia a fallos.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wiki-cloud.co\/en\/2022\/10\/high-availability-with-amazon-rds-multi-az\/\" \/>\n<meta property=\"og:site_name\" content=\"Wiki Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-06T11:33:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-08T20:22:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2022\/10\/article_coverpage_high_availability_with_amazon_rds_multiAZ_780x420.png\" \/>\n\t<meta property=\"og:image:width\" content=\"780\" \/>\n\t<meta property=\"og:image:height\" content=\"420\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"John Bulla\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"John Bulla\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/2022\\\/10\\\/high-availability-with-amazon-rds-multi-az\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/2022\\\/10\\\/high-availability-with-amazon-rds-multi-az\\\/\"},\"author\":{\"name\":\"John Bulla\",\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/es\\\/#\\\/schema\\\/person\\\/b73ea518d1f5e5fc1dba6f6fadb1e0ed\"},\"headline\":\"Alta disponibilidad con Amazon RDS Multi-AZ\",\"datePublished\":\"2022-10-06T11:33:11+00:00\",\"dateModified\":\"2025-10-08T20:22:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/2022\\\/10\\\/high-availability-with-amazon-rds-multi-az\\\/\"},\"wordCount\":1617,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/es\\\/#\\\/schema\\\/person\\\/b73ea518d1f5e5fc1dba6f6fadb1e0ed\"},\"image\":{\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/2022\\\/10\\\/high-availability-with-amazon-rds-multi-az\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wiki-cloud.co\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/article_coverpage_high_availability_with_amazon_rds_multiAZ_780x420.png\",\"articleSection\":[\"AWS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/wiki-cloud.co\\\/2022\\\/10\\\/high-availability-with-amazon-rds-multi-az\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/2022\\\/10\\\/high-availability-with-amazon-rds-multi-az\\\/\",\"url\":\"https:\\\/\\\/wiki-cloud.co\\\/2022\\\/10\\\/high-availability-with-amazon-rds-multi-az\\\/\",\"name\":\"Alta disponibilidad con Amazon RDS Multi-AZ - Wiki Cloud\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/es\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/2022\\\/10\\\/high-availability-with-amazon-rds-multi-az\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/2022\\\/10\\\/high-availability-with-amazon-rds-multi-az\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wiki-cloud.co\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/article_coverpage_high_availability_with_amazon_rds_multiAZ_780x420.png\",\"datePublished\":\"2022-10-06T11:33:11+00:00\",\"dateModified\":\"2025-10-08T20:22:49+00:00\",\"description\":\"AWS presenta esquemas de alta disponibilidad para Amazon RDS denominado Multi-AZ donde se pueden tener una o dos instancias de base de datos en espera, aprovechando la Infraestructura global de AWS que cuenta con zonas de disponibilidad donde los clientes pueden desplegar sus cargas de trabajo en varias zonas de disponibilidad dentro una regi\u00f3n y de esta forma incrementar la tolerancia a fallos.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/2022\\\/10\\\/high-availability-with-amazon-rds-multi-az\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wiki-cloud.co\\\/2022\\\/10\\\/high-availability-with-amazon-rds-multi-az\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/2022\\\/10\\\/high-availability-with-amazon-rds-multi-az\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wiki-cloud.co\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/article_coverpage_high_availability_with_amazon_rds_multiAZ_780x420.png\",\"contentUrl\":\"https:\\\/\\\/wiki-cloud.co\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/article_coverpage_high_availability_with_amazon_rds_multiAZ_780x420.png\",\"width\":780,\"height\":420},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/2022\\\/10\\\/high-availability-with-amazon-rds-multi-az\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wiki-cloud.co\\\/es\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Alta disponibilidad con Amazon RDS Multi-AZ\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/es\\\/#website\",\"url\":\"https:\\\/\\\/wiki-cloud.co\\\/es\\\/\",\"name\":\"Wiki Cloud\",\"description\":\"All about the cloud world\",\"publisher\":{\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/es\\\/#\\\/schema\\\/person\\\/b73ea518d1f5e5fc1dba6f6fadb1e0ed\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wiki-cloud.co\\\/es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/es\\\/#\\\/schema\\\/person\\\/b73ea518d1f5e5fc1dba6f6fadb1e0ed\",\"name\":\"John Bulla\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/logo_wiki_cloud_400x130.png\",\"url\":\"https:\\\/\\\/wiki-cloud.co\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/logo_wiki_cloud_400x130.png\",\"contentUrl\":\"https:\\\/\\\/wiki-cloud.co\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/logo_wiki_cloud_400x130.png\",\"width\":400,\"height\":131,\"caption\":\"John Bulla\"},\"logo\":{\"@id\":\"https:\\\/\\\/wiki-cloud.co\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/logo_wiki_cloud_400x130.png\"},\"sameAs\":[\"https:\\\/\\\/wiki-cloud.co\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Alta disponibilidad con Amazon RDS Multi-AZ - Wiki Cloud","description":"AWS presenta esquemas de alta disponibilidad para Amazon RDS denominado Multi-AZ donde se pueden tener una o dos instancias de base de datos en espera, aprovechando la Infraestructura global de AWS que cuenta con zonas de disponibilidad donde los clientes pueden desplegar sus cargas de trabajo en varias zonas de disponibilidad dentro una regi\u00f3n y de esta forma incrementar la tolerancia a fallos.","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Alta disponibilidad con Amazon RDS Multi-AZ - Wiki Cloud","og_description":"AWS presenta esquemas de alta disponibilidad para Amazon RDS denominado Multi-AZ donde se pueden tener una o dos instancias de base de datos en espera, aprovechando la Infraestructura global de AWS que cuenta con zonas de disponibilidad donde los clientes pueden desplegar sus cargas de trabajo en varias zonas de disponibilidad dentro una regi\u00f3n y de esta forma incrementar la tolerancia a fallos.","og_url":"https:\/\/wiki-cloud.co\/en\/2022\/10\/high-availability-with-amazon-rds-multi-az\/","og_site_name":"Wiki Cloud","article_published_time":"2022-10-06T11:33:11+00:00","article_modified_time":"2025-10-08T20:22:49+00:00","og_image":[{"width":780,"height":420,"url":"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2022\/10\/article_coverpage_high_availability_with_amazon_rds_multiAZ_780x420.png","type":"image\/png"}],"author":"John Bulla","twitter_card":"summary_large_image","twitter_misc":{"Written by":"John Bulla","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wiki-cloud.co\/2022\/10\/high-availability-with-amazon-rds-multi-az\/#article","isPartOf":{"@id":"https:\/\/wiki-cloud.co\/2022\/10\/high-availability-with-amazon-rds-multi-az\/"},"author":{"name":"John Bulla","@id":"https:\/\/wiki-cloud.co\/es\/#\/schema\/person\/b73ea518d1f5e5fc1dba6f6fadb1e0ed"},"headline":"Alta disponibilidad con Amazon RDS Multi-AZ","datePublished":"2022-10-06T11:33:11+00:00","dateModified":"2025-10-08T20:22:49+00:00","mainEntityOfPage":{"@id":"https:\/\/wiki-cloud.co\/2022\/10\/high-availability-with-amazon-rds-multi-az\/"},"wordCount":1617,"commentCount":0,"publisher":{"@id":"https:\/\/wiki-cloud.co\/es\/#\/schema\/person\/b73ea518d1f5e5fc1dba6f6fadb1e0ed"},"image":{"@id":"https:\/\/wiki-cloud.co\/2022\/10\/high-availability-with-amazon-rds-multi-az\/#primaryimage"},"thumbnailUrl":"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2022\/10\/article_coverpage_high_availability_with_amazon_rds_multiAZ_780x420.png","articleSection":["AWS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wiki-cloud.co\/2022\/10\/high-availability-with-amazon-rds-multi-az\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wiki-cloud.co\/2022\/10\/high-availability-with-amazon-rds-multi-az\/","url":"https:\/\/wiki-cloud.co\/2022\/10\/high-availability-with-amazon-rds-multi-az\/","name":"Alta disponibilidad con Amazon RDS Multi-AZ - Wiki Cloud","isPartOf":{"@id":"https:\/\/wiki-cloud.co\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wiki-cloud.co\/2022\/10\/high-availability-with-amazon-rds-multi-az\/#primaryimage"},"image":{"@id":"https:\/\/wiki-cloud.co\/2022\/10\/high-availability-with-amazon-rds-multi-az\/#primaryimage"},"thumbnailUrl":"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2022\/10\/article_coverpage_high_availability_with_amazon_rds_multiAZ_780x420.png","datePublished":"2022-10-06T11:33:11+00:00","dateModified":"2025-10-08T20:22:49+00:00","description":"AWS presenta esquemas de alta disponibilidad para Amazon RDS denominado Multi-AZ donde se pueden tener una o dos instancias de base de datos en espera, aprovechando la Infraestructura global de AWS que cuenta con zonas de disponibilidad donde los clientes pueden desplegar sus cargas de trabajo en varias zonas de disponibilidad dentro una regi\u00f3n y de esta forma incrementar la tolerancia a fallos.","breadcrumb":{"@id":"https:\/\/wiki-cloud.co\/2022\/10\/high-availability-with-amazon-rds-multi-az\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wiki-cloud.co\/2022\/10\/high-availability-with-amazon-rds-multi-az\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wiki-cloud.co\/2022\/10\/high-availability-with-amazon-rds-multi-az\/#primaryimage","url":"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2022\/10\/article_coverpage_high_availability_with_amazon_rds_multiAZ_780x420.png","contentUrl":"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2022\/10\/article_coverpage_high_availability_with_amazon_rds_multiAZ_780x420.png","width":780,"height":420},{"@type":"BreadcrumbList","@id":"https:\/\/wiki-cloud.co\/2022\/10\/high-availability-with-amazon-rds-multi-az\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wiki-cloud.co\/es\/"},{"@type":"ListItem","position":2,"name":"Alta disponibilidad con Amazon RDS Multi-AZ"}]},{"@type":"WebSite","@id":"https:\/\/wiki-cloud.co\/es\/#website","url":"https:\/\/wiki-cloud.co\/es\/","name":"Wiki Cloud","description":"All about the cloud world","publisher":{"@id":"https:\/\/wiki-cloud.co\/es\/#\/schema\/person\/b73ea518d1f5e5fc1dba6f6fadb1e0ed"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wiki-cloud.co\/es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/wiki-cloud.co\/es\/#\/schema\/person\/b73ea518d1f5e5fc1dba6f6fadb1e0ed","name":"John Bulla","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2020\/06\/logo_wiki_cloud_400x130.png","url":"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2020\/06\/logo_wiki_cloud_400x130.png","contentUrl":"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2020\/06\/logo_wiki_cloud_400x130.png","width":400,"height":131,"caption":"John Bulla"},"logo":{"@id":"https:\/\/wiki-cloud.co\/wp-content\/uploads\/2020\/06\/logo_wiki_cloud_400x130.png"},"sameAs":["https:\/\/wiki-cloud.co"]}]}},"_links":{"self":[{"href":"https:\/\/wiki-cloud.co\/en\/wp-json\/wp\/v2\/posts\/2522","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wiki-cloud.co\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wiki-cloud.co\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wiki-cloud.co\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wiki-cloud.co\/en\/wp-json\/wp\/v2\/comments?post=2522"}],"version-history":[{"count":17,"href":"https:\/\/wiki-cloud.co\/en\/wp-json\/wp\/v2\/posts\/2522\/revisions"}],"predecessor-version":[{"id":3271,"href":"https:\/\/wiki-cloud.co\/en\/wp-json\/wp\/v2\/posts\/2522\/revisions\/3271"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wiki-cloud.co\/en\/wp-json\/wp\/v2\/media\/2527"}],"wp:attachment":[{"href":"https:\/\/wiki-cloud.co\/en\/wp-json\/wp\/v2\/media?parent=2522"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wiki-cloud.co\/en\/wp-json\/wp\/v2\/categories?post=2522"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wiki-cloud.co\/en\/wp-json\/wp\/v2\/tags?post=2522"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}