# Gremlin Blog

Prevent outages, innovate faster, and earn customer trust with Gremlin's Reliability Management and Chaos Engineering platform.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## How to verify your Azure Application Gateway is zone-redundant

DevFeed: [How to verify your Azure Application Gateway is zone-redundant](<https://devfeed.tech/articles/how-to-verify-your-azure-application-gateway-is-zone-redundant-11647.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/how-to-verify-your-azure-application-gateway-is-zone-redundant>)

Author: Andre Newman

Published: 2026-09-04T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Azure](<https://devfeed.tech/topics/azure.md>), [Availability](<https://devfeed.tech/topics/availability.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>), [web applications](<https://devfeed.tech/topics/web-applications.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [Shared Responsibility Model](<https://devfeed.tech/topics/shared-responsibility-model.md>)

Tags: [availability](<https://devfeed.tech/tags/availability.md>), [azure](<https://devfeed.tech/tags/azure.md>), [cli](<https://devfeed.tech/tags/cli.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [features](<https://devfeed.tech/tags/features.md>), [high-availability](<https://devfeed.tech/tags/high-availability.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [infrastructure](<https://devfeed.tech/tags/infrastructure.md>), [post](<https://devfeed.tech/tags/post.md>), [shared-responsibility](<https://devfeed.tech/tags/shared-responsibility.md>), [web-applications](<https://devfeed.tech/tags/web-applications.md>)

### AI overview

This how-to article explains availability-zone redundancy for Azure Application Gateway. It describes the redundancy model, the shared responsibility boundary, and how to verify whether a gateway is zone-redundant or zonal using Azure CLI and Resource Graph. It also cautions that a redundant gateway does not by itself make the services behind it redundant.

### Source excerpt

This post explains what zone redundancy means for Application Gateway, how to confirm whether a given gateway is zone-redundant or zonal using the Azure CLI and Resource Graph, and why a gateway surviving a zone failure doesn't mean the services calling through it will.

## Managing Kubernetes node drains with Pod Disruption Budgets

DevFeed: [Managing Kubernetes node drains with Pod Disruption Budgets](<https://devfeed.tech/articles/managing-kubernetes-node-drains-with-pod-disruption-budgets-11664.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/managing-kubernetes-node-drains-with-pod-disruption-budgets>)

Author: Andre Newman

Published: 2026-08-27T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [web applications](<https://devfeed.tech/topics/web-applications.md>), [Latency](<https://devfeed.tech/topics/latency.md>), [nginx](<https://devfeed.tech/topics/nginx.md>)

Tags: [deployment](<https://devfeed.tech/tags/deployment.md>), [features](<https://devfeed.tech/tags/features.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [latency](<https://devfeed.tech/tags/latency.md>), [learn](<https://devfeed.tech/tags/learn.md>), [nginx](<https://devfeed.tech/tags/nginx.md>), [web](<https://devfeed.tech/tags/web.md>)

### AI overview

This article explains how Kubernetes PodDisruptionBudgets protect application availability during voluntary disruptions such as node drains, autoscaler consolidation, and pod migration. It describes the risks of missing PDB definitions, explains how PDBs limit simultaneous pod unavailability, and outlines how to identify deployments without them and test their behavior.

### Source excerpt

A missing PodDisruptionBudget lets a routine node drain take your service offline. Learn how to set minAvailable, find gaps, and test that your PDB holds.

## Safer Kubernetes rollouts with minReadySeconds

DevFeed: [Safer Kubernetes rollouts with minReadySeconds](<https://devfeed.tech/articles/safer-kubernetes-rollouts-with-minreadyseconds-11707.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/safer-kubernetes-rollouts-with-minreadyseconds>)

Author: Andre Newman

Published: 2026-08-20T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [Availability](<https://devfeed.tech/topics/availability.md>), [Deployment](<https://devfeed.tech/topics/deployment.md>)

Tags: [availability](<https://devfeed.tech/tags/availability.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [load-balancer](<https://devfeed.tech/tags/load-balancer.md>)

### AI overview

This article explains how Kubernetes minReadySeconds makes newly created pods remain Ready for a defined period before rollout controllers remove the pods they replace. It describes how the setting improves rolling-update safety, supports pod disruption budgets, and allows time for external load balancers to register new backends.

### Source excerpt

minReadySeconds makes new pods prove they can stay ready before a rollout moves on. Learn what it controls, how to set it, and how to find workloads missing it.

## Optimizing Kubernetes pods for reliability with topology spread constraints

DevFeed: [Optimizing Kubernetes pods for reliability with topology spread constraints](<https://devfeed.tech/articles/optimizing-kubernetes-pods-for-reliability-with-topology-spread-constraints-11675.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/optimizing-kubernetes-pod-deployments-for-reliability-with-topology-spread-constraints>)

Author: Andre Newman

Published: 2026-08-13T00:00:00Z

Content type: tutorial

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [Availability](<https://devfeed.tech/topics/availability.md>)

Tags: [availability](<https://devfeed.tech/tags/availability.md>), [blog](<https://devfeed.tech/tags/blog.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [manifest](<https://devfeed.tech/tags/manifest.md>)

### AI overview

This blog explains how Kubernetes topology spread constraints distribute pods across failure domains such as availability zones, regions, and nodes. It covers their reliability benefits, configuration through spec.topologySpreadConstraints, and the main constraint fields and behaviors.

### Source excerpt

Topology spread constraints let you determine how Kubernetes spreads pod replicas across failure domains, such as availability zones and regions. This blog explains how they work, how to configure them, and how to scan for missing constraints.

## What your AI SRE can't see (and what you can do about it)

DevFeed: [What your AI SRE can't see (and what you can do about it)](<https://devfeed.tech/articles/what-your-ai-sre-can-t-see-and-what-you-can-do-about-it-11736.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/what-your-ai-sre-cant-see-and-what-you-can-do-about-it>)

Author: Ryan Detwiller

Published: 2026-08-06T00:00:00Z

Content type: opinion

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [SRE](<https://devfeed.tech/topics/sre.md>), [incident](<https://devfeed.tech/topics/incident.md>), [Availability](<https://devfeed.tech/topics/availability.md>), [telemetry](<https://devfeed.tech/topics/telemetry.md>), [Latency](<https://devfeed.tech/topics/latency.md>), [Memory Leaks](<https://devfeed.tech/topics/memory-leaks.md>), [Deployment](<https://devfeed.tech/topics/deployment.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [availability](<https://devfeed.tech/tags/availability.md>), [config](<https://devfeed.tech/tags/config.md>), [dependency](<https://devfeed.tech/tags/dependency.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [latency](<https://devfeed.tech/tags/latency.md>), [load-balancer](<https://devfeed.tech/tags/load-balancer.md>), [memory](<https://devfeed.tech/tags/memory.md>), [outage](<https://devfeed.tech/tags/outage.md>), [outages](<https://devfeed.tech/tags/outages.md>), [sre](<https://devfeed.tech/tags/sre.md>)

### AI overview

The article argues that AI SRE tools can speed up triage, reduce alert fatigue, and automate frontline incident response, but they do not solve all reliability problems. It identifies gaps including acting only after failures begin and being unable to predict sudden failures without detectable warning signals.

### Source excerpt

AI SRE is having a moment. And let's be honest: faster triage, less alert fatigue, and automated frontline response are wins for understaffed teams. But there are still five gaps in their capabilities, and if you don't understand those gaps before you deploy, you'll find out during an outage.

## Managing slow container starts with Kubernetes readiness probes

DevFeed: [Managing slow container starts with Kubernetes readiness probes](<https://devfeed.tech/articles/managing-slow-container-starts-with-kubernetes-readiness-probes-11665.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/managing-slow-container-starts-kubernetes-readiness-probes>)

Author: Andre Newman

Published: 2026-08-04T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [App](<https://devfeed.tech/topics/app.md>), [Database](<https://devfeed.tech/topics/database.md>), [Network](<https://devfeed.tech/topics/network.md>)

Tags: [blog](<https://devfeed.tech/tags/blog.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [learn](<https://devfeed.tech/tags/learn.md>)

### AI overview

This article explains how Kubernetes readiness probes prevent slow-starting pods from receiving live traffic before they are prepared. It describes when a pod is considered ready and outlines configuration considerations for applications that need setup time.

### Source excerpt

Pods without readiness probes are like engineers without coffee. Learn how readiness probes work, why they're important, and how to configure them correctly.

## The Gremlin app for Dynatrace: resilience testing and reliability scoring, built on the observability you already trust

DevFeed: [The Gremlin app for Dynatrace: resilience testing and reliability scoring, built on the observability you already trust](<https://devfeed.tech/articles/the-gremlin-app-for-dynatrace-resilience-testing-and-reliability-scoring-built-on-the-observability-you-already-trust-11572.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/gremlin-app-for-dynatrace>)

Author: Ryan Detwiller

Published: 2026-07-28T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Resilience](<https://devfeed.tech/topics/resilience.md>), [dynatrace](<https://devfeed.tech/topics/dynatrace.md>), [observability](<https://devfeed.tech/topics/observability.md>), [Instrumentation](<https://devfeed.tech/topics/instrumentation.md>), [distributed-systems](<https://devfeed.tech/topics/distributed-systems.md>)

Tags: [announcements](<https://devfeed.tech/tags/announcements.md>), [distributed-systems](<https://devfeed.tech/tags/distributed-systems.md>), [dynatrace](<https://devfeed.tech/tags/dynatrace.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [gremlin](<https://devfeed.tech/tags/gremlin.md>), [incident](<https://devfeed.tech/tags/incident.md>), [instrumentation](<https://devfeed.tech/tags/instrumentation.md>), [metrics](<https://devfeed.tech/tags/metrics.md>), [observability](<https://devfeed.tech/tags/observability.md>), [real-time](<https://devfeed.tech/tags/real-time.md>), [resilience](<https://devfeed.tech/tags/resilience.md>), [safety](<https://devfeed.tech/tags/safety.md>), [systems](<https://devfeed.tech/tags/systems.md>), [testing](<https://devfeed.tech/tags/testing.md>), [uptime](<https://devfeed.tech/tags/uptime.md>)

### AI overview

The Gremlin app for Dynatrace adds resilience testing and reliability scoring to Dynatrace workflows. Teams can run reliability tests, observe their impact in real time, and track service-level reliability scores using existing Dynatrace metrics, alerts, instrumentation, and health checks.

### Source excerpt

With the Gremlin app for Dyantrace, you get resilience testing and reliability scoring built on the observability you already trust.

## Eliminate Reliability Blind Spots in AWS, Azure, and GCP

DevFeed: [Eliminate Reliability Blind Spots in AWS, Azure, and GCP](<https://devfeed.tech/articles/eliminate-reliability-blind-spots-in-aws-azure-and-gcp-11565.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/eliminate-reliability-blind-spots-detected-risks-aws-azure-gcp>)

Author: Andre Newman

Published: 2026-07-14T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Cloud](<https://devfeed.tech/topics/cloud.md>), [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [Resilience](<https://devfeed.tech/topics/resilience.md>), [Amazon Web Services](<https://devfeed.tech/topics/aws.md>), [Azure](<https://devfeed.tech/topics/azure.md>), [Chaos Engineering](<https://devfeed.tech/topics/chaos-engineering.md>)

Tags: [availability](<https://devfeed.tech/tags/availability.md>), [aws](<https://devfeed.tech/tags/aws.md>), [azure](<https://devfeed.tech/tags/azure.md>), [containers](<https://devfeed.tech/tags/containers.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [experimentation](<https://devfeed.tech/tags/experimentation.md>), [features](<https://devfeed.tech/tags/features.md>), [gcp](<https://devfeed.tech/tags/gcp.md>), [gremlin](<https://devfeed.tech/tags/gremlin.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [orchestration](<https://devfeed.tech/tags/orchestration.md>), [outages](<https://devfeed.tech/tags/outages.md>), [resilience](<https://devfeed.tech/tags/resilience.md>), [uptime](<https://devfeed.tech/tags/uptime.md>)

### AI overview

Gremlin's expanded Detected Risks feature automatically identifies high-priority reliability risks across AWS, Azure, GCP, and Kubernetes environments. It is designed to reveal issues such as misconfigured deployments, crash-looping containers, missing readiness probes, and poor pod distribution before they cause outages.

### Source excerpt

Discover reliability risks without running a single test. See how Gremlin identifies high-priority reliability risks across AWS, Azure, and GCP to prevent outages.

## Creating an agentic feedback loop with reliability guardrails

DevFeed: [Creating an agentic feedback loop with reliability guardrails](<https://devfeed.tech/articles/creating-an-agentic-feedback-loop-with-reliability-guardrails-11564.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/creating-an-agentic-feedback-loop-with-reliability-guardrails>)

Author: Gavin Cahill

Published: 2026-06-25T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [AI Development](<https://devfeed.tech/topics/ai-development.md>), [AI-assisted coding](<https://devfeed.tech/topics/ai-assisted-coding.md>), [Chaos Engineering](<https://devfeed.tech/topics/chaos-engineering.md>), [Resilience](<https://devfeed.tech/topics/resilience.md>), [CI/CD](<https://devfeed.tech/topics/cicd.md>), [Code review](<https://devfeed.tech/topics/code-review.md>)

Tags: [agentic-ai](<https://devfeed.tech/tags/agentic-ai.md>), [ai](<https://devfeed.tech/tags/ai.md>), [ai-for-code](<https://devfeed.tech/tags/ai-for-code.md>), [chaos-engineering](<https://devfeed.tech/tags/chaos-engineering.md>), [ci-cd](<https://devfeed.tech/tags/ci-cd.md>), [code-generation](<https://devfeed.tech/tags/code-generation.md>), [resilience](<https://devfeed.tech/tags/resilience.md>), [testing](<https://devfeed.tech/tags/testing.md>)

### AI overview

The article explains how reliability guardrails and resilience testing can create an agentic feedback loop for AI coding. It argues that agentic code review and QA alone may miss production failures, so fault injection and Chaos Engineering can validate system behavior under realistic failures and provide data that improves AI-generated code. It also discusses using resilience tests as an automated CI/CD gate.

### Source excerpt

Reliability guardrails are essential for ensuring resilience with AI development, but they can also be used to create a feedback loop for AI context.

## Announcing no-code application fault injection

DevFeed: [Announcing no-code application fault injection](<https://devfeed.tech/articles/announcing-no-code-application-fault-injection-11559.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/announcing-failure-flags-no-code-application-fault-injection>)

Author: Andre Newman

Published: 2026-06-02T00:00:00Z

Content type: release

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Failure Flags](<https://devfeed.tech/topics/failure-flags.md>), [Serverless](<https://devfeed.tech/topics/serverless.md>), [Chaos Engineering](<https://devfeed.tech/topics/chaos-engineering.md>), [Testing](<https://devfeed.tech/topics/testing.md>), [Availability](<https://devfeed.tech/topics/availability.md>), [Latency](<https://devfeed.tech/topics/latency.md>), [observability](<https://devfeed.tech/topics/observability.md>)

Tags: [availability](<https://devfeed.tech/tags/availability.md>), [failure-flags](<https://devfeed.tech/tags/failure-flags.md>), [gremlin](<https://devfeed.tech/tags/gremlin.md>), [health-checks](<https://devfeed.tech/tags/health-checks.md>), [infrastructure](<https://devfeed.tech/tags/infrastructure.md>), [latency](<https://devfeed.tech/tags/latency.md>), [no-code](<https://devfeed.tech/tags/no-code.md>), [observability](<https://devfeed.tech/tags/observability.md>), [performance](<https://devfeed.tech/tags/performance.md>), [serverless](<https://devfeed.tech/tags/serverless.md>), [testing](<https://devfeed.tech/tags/testing.md>), [uptime](<https://devfeed.tech/tags/uptime.md>)

### AI overview

Gremlin announces Failure Flags by proxy, a no-code application fault injection solution for serverless and managed applications. The sidecar proxy enables reliability tests such as simulating outages, adding latency, and generating exceptions without code changes. Intelligent Health Checks automatically monitor network throughput, latency, and error rate during tests.

### Source excerpt

Gremlin announces Failure Flags by proxy, a no-code application fault injection solution for serverless and managed applications. Learn more in our latest blog post.

## Why agentic AI development needs reliability guardrails

DevFeed: [Why agentic AI development needs reliability guardrails](<https://devfeed.tech/articles/why-agentic-ai-development-needs-reliability-guardrails-11742.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/why-agentic-ai-development-needs-reliability-guardrails>)

Author: Gavin Cahill

Published: 2026-05-15T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [agentic-coding](<https://devfeed.tech/topics/agentic-coding.md>), [AI-assisted coding](<https://devfeed.tech/topics/ai-assisted-coding.md>), [Resilience](<https://devfeed.tech/topics/resilience.md>), [Chaos Engineering](<https://devfeed.tech/topics/chaos-engineering.md>), [systems](<https://devfeed.tech/topics/systems.md>), [Latency](<https://devfeed.tech/topics/latency.md>), [Database](<https://devfeed.tech/topics/database.md>)

Tags: [agentic](<https://devfeed.tech/tags/agentic.md>), [agentic-ai](<https://devfeed.tech/tags/agentic-ai.md>), [agentic-coding](<https://devfeed.tech/tags/agentic-coding.md>), [ai](<https://devfeed.tech/tags/ai.md>), [ai-for-code](<https://devfeed.tech/tags/ai-for-code.md>), [database](<https://devfeed.tech/tags/database.md>), [latency](<https://devfeed.tech/tags/latency.md>), [resilience](<https://devfeed.tech/tags/resilience.md>), [systems](<https://devfeed.tech/tags/systems.md>), [testing](<https://devfeed.tech/tags/testing.md>)

### AI overview

Agentic AI is accelerating code generation and deployment, but the resulting increase in code volume and reported issue rates raises reliability risks. The article argues for scalable reliability guardrails and fault-injection testing to verify resilience and reduce the risk of outage-causing failures.

### Source excerpt

Companies are moving faster than ever with agentic AI, but that means more risks. Without reliability guardrails, they risk costly outages.

## The hidden reliability risks in your agentic AI workflows

DevFeed: [The hidden reliability risks in your agentic AI workflows](<https://devfeed.tech/articles/the-hidden-reliability-risks-in-your-agentic-ai-workflows-11721.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/the-hidden-reliability-risks-in-your-agentic-ai-workflows>)

Author: Andre Newman

Published: 2026-03-17T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [distributed-systems](<https://devfeed.tech/topics/distributed-systems.md>), [Latency](<https://devfeed.tech/topics/latency.md>), [Network](<https://devfeed.tech/topics/network.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Low Latency](<https://devfeed.tech/topics/low-latency.md>), [Retrieval Augmented Generation (RAG)](<https://devfeed.tech/topics/retrieval-augmented-generation-rag.md>), [systems](<https://devfeed.tech/topics/systems.md>), [Orchestration](<https://devfeed.tech/topics/orchestration.md>), [AWS Transform](<https://devfeed.tech/topics/aws-transform.md>)

Tags: [agentic-ai](<https://devfeed.tech/tags/agentic-ai.md>), [ai](<https://devfeed.tech/tags/ai.md>), [complexity](<https://devfeed.tech/tags/complexity.md>), [dependency](<https://devfeed.tech/tags/dependency.md>), [llm](<https://devfeed.tech/tags/llm.md>), [network](<https://devfeed.tech/tags/network.md>), [orchestration](<https://devfeed.tech/tags/orchestration.md>), [outages](<https://devfeed.tech/tags/outages.md>), [production](<https://devfeed.tech/tags/production.md>), [rag](<https://devfeed.tech/tags/rag.md>), [systems](<https://devfeed.tech/tags/systems.md>), [testing](<https://devfeed.tech/tags/testing.md>), [workflows](<https://devfeed.tech/tags/workflows.md>)

### AI overview

This article examines reliability risks in agentic AI workflows, focusing on unstable network interactions, non-deterministic behavior, and the complexity of third-party dependencies. It explains how latency, outages, retrieval-augmented generation systems, and multi-agent orchestration can create cascading failures, and advocates proactive reliability testing.

### Source excerpt

Prevent AI outages before they impact production. Learn how to discover and mitigate reliability risks in agentic AI systems like network stability, non-deterministic behavior, and third-party dependencies.

## How Gremlin makes disaster recovery testing easier and faster

DevFeed: [How Gremlin makes disaster recovery testing easier and faster](<https://devfeed.tech/articles/how-gremlin-makes-disaster-recovery-testing-easier-and-faster-11593.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/how-gremlin-makes-disaster-recovery-testing-easier-and-faster>)

Author: Gavin Cahill

Published: 2026-03-04T00:00:00Z

Content type: tutorial

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Disaster Recovery](<https://devfeed.tech/topics/disaster-recovery.md>), [Resilience](<https://devfeed.tech/topics/resilience.md>), [Testing](<https://devfeed.tech/topics/testing.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>)

Tags: [backup](<https://devfeed.tech/tags/backup.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [disaster-recovery](<https://devfeed.tech/tags/disaster-recovery.md>), [failover](<https://devfeed.tech/tags/failover.md>), [gremlin](<https://devfeed.tech/tags/gremlin.md>), [resilience](<https://devfeed.tech/tags/resilience.md>), [testing](<https://devfeed.tech/tags/testing.md>), [use-cases](<https://devfeed.tech/tags/use-cases.md>)

### AI overview

The article explains how Gremlin's Disaster Recovery Testing helps teams test disaster recovery plans by simulating failures such as zone evacuations, region failovers, and cloud-provider outages. It recommends establishing service baselines with test suites, running tests regularly, and repeating them to verify fixes.

### Source excerpt

Gremlin's Disaster Recovery Testing makes it easy to run zone evacuations, region failovers, and more for a fraction of the lift of traditional disaster recovery testing.

## Announcing Disaster Recovery Testing

DevFeed: [Announcing Disaster Recovery Testing](<https://devfeed.tech/articles/announcing-disaster-recovery-testing-11558.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/announcing-disaster-recovery-testing>)

Author: Andre Newman

Published: 2026-02-03T00:00:00Z

Content type: release

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Disaster Recovery](<https://devfeed.tech/topics/disaster-recovery.md>), [Testing](<https://devfeed.tech/topics/testing.md>), [Incident response](<https://devfeed.tech/topics/incident-response.md>), [Resilience](<https://devfeed.tech/topics/resilience.md>), [Availability](<https://devfeed.tech/topics/availability.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>), [datacenter](<https://devfeed.tech/topics/datacenter.md>), [Amazon Web Services](<https://devfeed.tech/topics/aws.md>), [Azure](<https://devfeed.tech/topics/azure.md>)

Tags: [announcements](<https://devfeed.tech/tags/announcements.md>), [availability](<https://devfeed.tech/tags/availability.md>), [aws](<https://devfeed.tech/tags/aws.md>), [azure](<https://devfeed.tech/tags/azure.md>), [disaster-recovery](<https://devfeed.tech/tags/disaster-recovery.md>), [failover](<https://devfeed.tech/tags/failover.md>), [gremlin](<https://devfeed.tech/tags/gremlin.md>), [health-checks](<https://devfeed.tech/tags/health-checks.md>), [incident-response](<https://devfeed.tech/tags/incident-response.md>), [infrastructure](<https://devfeed.tech/tags/infrastructure.md>), [metrics](<https://devfeed.tech/tags/metrics.md>), [resilience](<https://devfeed.tech/tags/resilience.md>), [systems](<https://devfeed.tech/tags/systems.md>), [testing](<https://devfeed.tech/tags/testing.md>)

### AI overview

Gremlin announces Disaster Recovery Testing, a feature for running organization-wide zone, region, and datacenter-scale experiments. It helps teams validate failover, disaster recovery, and incident response processes, with health checks that can automatically halt tests when key metrics exceed defined SLA limits.

### Source excerpt

Gremlin announces Disaster Recovery Testing for validating region failover processes, disaster recovery plans, incident response procedures, and more.

## Reliability Resolutions: How to build effective reliability programs that won't fade away

DevFeed: [Reliability Resolutions: How to build effective reliability programs that won't fade away](<https://devfeed.tech/articles/reliability-resolutions-how-to-build-effective-reliability-programs-that-won-t-fade-away-11608.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/how-to-build-effective-reliability-programs-that-wont-fade-away>)

Author: Gavin Cahill

Published: 2026-01-21T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Chaos Engineering](<https://devfeed.tech/topics/chaos-engineering.md>), [Availability](<https://devfeed.tech/topics/availability.md>), [systems](<https://devfeed.tech/topics/systems.md>), [data](<https://devfeed.tech/topics/data.md>)

Tags: [availability](<https://devfeed.tech/tags/availability.md>), [chaos-engineering](<https://devfeed.tech/tags/chaos-engineering.md>), [data](<https://devfeed.tech/tags/data.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [reliability-management](<https://devfeed.tech/tags/reliability-management.md>), [systems](<https://devfeed.tech/tags/systems.md>), [testing](<https://devfeed.tech/tags/testing.md>), [uptime](<https://devfeed.tech/tags/uptime.md>)

### AI overview

This article explains how to build reliability and Chaos Engineering programs that produce lasting results. It recommends aligning reliability work with company goals, assigning ownership, creating repeatable processes, identifying data gaps, and testing specific failure modes on critical systems. Progress can be demonstrated through evidence such as validated failover and achievement of uptime targets.

### Source excerpt

We're already almost through January. How are your reliability resolutions faring? Check out these key questions to help you follow-through and build an effective reliability program.

## How to test application resiliency by simulating the Cloudflare December 2025 outage

DevFeed: [How to test application resiliency by simulating the Cloudflare December 2025 outage](<https://devfeed.tech/articles/how-to-test-application-resiliency-by-simulating-the-cloudflare-december-2025-outage-11636.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/how-to-test-application-resiliency-by-simulating-the-cloudflare-december-2025-outage>)

Author: Gavin Cahill

Published: 2025-12-19T00:00:00Z

Content type: tutorial

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Failure Flags](<https://devfeed.tech/topics/failure-flags.md>), [Resilience](<https://devfeed.tech/topics/resilience.md>), [incident](<https://devfeed.tech/topics/incident.md>), [Chaos Engineering](<https://devfeed.tech/topics/chaos-engineering.md>), [SDKs](<https://devfeed.tech/topics/sdks.md>), [JavaScript](<https://devfeed.tech/topics/javascript.md>), [Node.js](<https://devfeed.tech/topics/node-js.md>), [Python](<https://devfeed.tech/topics/python.md>), [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [AWS Lambda](<https://devfeed.tech/topics/aws-lambda.md>), [Azure](<https://devfeed.tech/topics/azure.md>)

Tags: [2025](<https://devfeed.tech/tags/2025.md>), [after-the-retrospective](<https://devfeed.tech/tags/after-the-retrospective.md>), [applications](<https://devfeed.tech/tags/applications.md>), [aws](<https://devfeed.tech/tags/aws.md>), [aws-lambda](<https://devfeed.tech/tags/aws-lambda.md>), [azure](<https://devfeed.tech/tags/azure.md>), [c-sharp](<https://devfeed.tech/tags/c-sharp.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [cloudflare](<https://devfeed.tech/tags/cloudflare.md>), [code](<https://devfeed.tech/tags/code.md>), [failure-flags](<https://devfeed.tech/tags/failure-flags.md>), [gremlin](<https://devfeed.tech/tags/gremlin.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [http](<https://devfeed.tech/tags/http.md>), [incident](<https://devfeed.tech/tags/incident.md>), [internet-traffic](<https://devfeed.tech/tags/internet-traffic.md>), [javascript](<https://devfeed.tech/tags/javascript.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [node-js](<https://devfeed.tech/tags/node-js.md>), [outage](<https://devfeed.tech/tags/outage.md>), [python](<https://devfeed.tech/tags/python.md>)

### AI overview

This tutorial explains how to use Gremlin Failure Flags to simulate HTTP 500 errors associated with the December 2025 Cloudflare outage. It describes application-layer fault injection, the distinction from network-layer experiments, and supported deployment environments and SDK languages.

### Source excerpt

Use Gremlin Failure Flags to safely simulate 500 error codes and test resiliency to outages, like the December 5th Cloudflare incident.

## Gremlin Release Roundup 2025: Reliability across AI, on-prem, and applications

DevFeed: [Gremlin Release Roundup 2025: Reliability across AI, on-prem, and applications](<https://devfeed.tech/articles/gremlin-release-roundup-2025-reliability-across-ai-on-prem-and-applications-11684.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/release-roundup-2025>)

Author: Andre Newman

Published: 2025-12-15T00:00:00Z

Content type: release

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [on-prem](<https://devfeed.tech/topics/on-prem.md>), [Failure Flags](<https://devfeed.tech/topics/failure-flags.md>), [experiments](<https://devfeed.tech/topics/experiments.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [MCP Server](<https://devfeed.tech/topics/mcp-server.md>), [telemetry](<https://devfeed.tech/topics/telemetry.md>), [SRE](<https://devfeed.tech/topics/sre.md>)

Tags: [2025](<https://devfeed.tech/tags/2025.md>), [ai](<https://devfeed.tech/tags/ai.md>), [analysis](<https://devfeed.tech/tags/analysis.md>), [experiments](<https://devfeed.tech/tags/experiments.md>), [failure-flags](<https://devfeed.tech/tags/failure-flags.md>), [features](<https://devfeed.tech/tags/features.md>), [gremlin](<https://devfeed.tech/tags/gremlin.md>), [mcp](<https://devfeed.tech/tags/mcp.md>), [mcp-server](<https://devfeed.tech/tags/mcp-server.md>), [no-code](<https://devfeed.tech/tags/no-code.md>), [on-prem](<https://devfeed.tech/tags/on-prem.md>), [outages](<https://devfeed.tech/tags/outages.md>), [release](<https://devfeed.tech/tags/release.md>), [releases](<https://devfeed.tech/tags/releases.md>), [sre](<https://devfeed.tech/tags/sre.md>), [telemetry](<https://devfeed.tech/tags/telemetry.md>)

### AI overview

Gremlin's 2025 release roundup describes improvements aimed at preventing outages and making reliability testing easier. Highlights include Reliability Intelligence for analyzing failures and recommending remediations, a Gremlin MCP server for querying environments through an LLM, new experiments and Failure Flags capabilities, expanded platform support, streamlined onboarding, and web UI refinements.

### Source excerpt

This year's release roundup covers our new on-prem offering, new Failure Flags features, intelligent analysis of failed experiments, and much more.

## How to use Gremlin's Reliability Report

DevFeed: [How to use Gremlin's Reliability Report](<https://devfeed.tech/articles/how-to-use-gremlin-s-reliability-report-11642.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/how-to-use-gremlins-reliability-report>)

Author: Gavin Cahill

Published: 2025-12-12T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [dashboards](<https://devfeed.tech/topics/dashboards.md>), [monitor](<https://devfeed.tech/topics/monitor.md>), [systems](<https://devfeed.tech/topics/systems.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>), [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [configuration](<https://devfeed.tech/topics/configuration.md>)

Tags: [blog](<https://devfeed.tech/tags/blog.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [configuration](<https://devfeed.tech/tags/configuration.md>), [gremlin](<https://devfeed.tech/tags/gremlin.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [leadership](<https://devfeed.tech/tags/leadership.md>), [monitor](<https://devfeed.tech/tags/monitor.md>), [organizational](<https://devfeed.tech/tags/organizational.md>), [reliability-management](<https://devfeed.tech/tags/reliability-management.md>)

### AI overview

Gremlin's Reliability Report provides organization-wide visibility into system reliability through reliability scores, detected risks, test-run counts, and service-level impacts. The article explains the report's dashboard sections, including six-month reliability trends and automatically detected Kubernetes and cloud risks, and describes how leadership can use the information to monitor and improve reliability.

### Source excerpt

Find out how our Reliability Report gives you visibility into your system's reliability--and how Gremlin uses it to improve reliability.

## Gremlin's unofficial reliability track for Gartner IOCS 2025

DevFeed: [Gremlin's unofficial reliability track for Gartner IOCS 2025](<https://devfeed.tech/articles/gremlin-s-unofficial-reliability-track-for-gartner-iocs-2025-11581.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/gremlins-unofficial-reliability-track-for-gartner-iocs-2025>)

Author: Gavin Cahill

Published: 2025-12-01T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [SRE](<https://devfeed.tech/topics/sre.md>), [incident](<https://devfeed.tech/topics/incident.md>), [Critical Infrastructure](<https://devfeed.tech/topics/critical-infrastructure.md>), [AI Agent](<https://devfeed.tech/topics/ai-agent.md>), [genai](<https://devfeed.tech/topics/genai.md>)

Tags: [2025](<https://devfeed.tech/tags/2025.md>), [agentic-ai](<https://devfeed.tech/tags/agentic-ai.md>), [analysts](<https://devfeed.tech/tags/analysts.md>), [critical-infrastructure](<https://devfeed.tech/tags/critical-infrastructure.md>), [gartner](<https://devfeed.tech/tags/gartner.md>), [incident](<https://devfeed.tech/tags/incident.md>), [site-reliability](<https://devfeed.tech/tags/site-reliability.md>), [talks](<https://devfeed.tech/tags/talks.md>), [team-topologies](<https://devfeed.tech/tags/team-topologies.md>)

### AI overview

Gremlin presents an unofficial reliability-focused track for Gartner IOCS 2025, highlighting sessions on software-update risks, critical dependencies, SRE team structures, and the future of reliability in an AI agent world.

### Source excerpt

Check out the Gremlin-curated unofficial track of reliability talks at Gartner IOCS 2025.

## Reliability lessons from the 2025 Cloudflare outage

DevFeed: [Reliability lessons from the 2025 Cloudflare outage](<https://devfeed.tech/articles/reliability-lessons-from-the-2025-cloudflare-outage-11697.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/reliability-lessons-from-the-2025-cloudflare-outage>)

Author: Andre Newman

Published: 2025-11-20T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Cloudflare](<https://devfeed.tech/topics/cloudflare.md>), [Bot Management](<https://devfeed.tech/topics/bot-management.md>), [configuration](<https://devfeed.tech/topics/configuration.md>), [Chaos Engineering](<https://devfeed.tech/topics/chaos-engineering.md>), [Post Mortem](<https://devfeed.tech/topics/post-mortem.md>), [Network](<https://devfeed.tech/topics/network.md>), [Workers](<https://devfeed.tech/topics/workers.md>)

Tags: [2025](<https://devfeed.tech/tags/2025.md>), [after-the-retrospective](<https://devfeed.tech/tags/after-the-retrospective.md>), [bot-management](<https://devfeed.tech/tags/bot-management.md>), [chaos-engineering](<https://devfeed.tech/tags/chaos-engineering.md>), [cloudflare](<https://devfeed.tech/tags/cloudflare.md>), [configuration](<https://devfeed.tech/tags/configuration.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [http](<https://devfeed.tech/tags/http.md>), [internet](<https://devfeed.tech/tags/internet.md>), [management](<https://devfeed.tech/tags/management.md>), [outage](<https://devfeed.tech/tags/outage.md>), [outages](<https://devfeed.tech/tags/outages.md>), [post-mortem](<https://devfeed.tech/tags/post-mortem.md>), [workers](<https://devfeed.tech/tags/workers.md>)

### AI overview

The article examines the November 2025 Cloudflare outage, explaining how an oversized Bot Management configuration caused HTTP 5XX errors and cascading failures across dependent services. It highlights configuration propagation, service dependencies, and chaos engineering as reliability considerations.

### Source excerpt

In November 2025, a misconfigured Cloudflare service led to a partial outage. Learn what happened, and what you can do to reduce the impact of similar outages.

## Reliability lessons from the 2025 Microsoft Azure Front Door outage

DevFeed: [Reliability lessons from the 2025 Microsoft Azure Front Door outage](<https://devfeed.tech/articles/reliability-lessons-from-the-2025-microsoft-azure-front-door-outage-11699.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/reliability-lessons-from-the-2025-microsoft-azure-front-door-outage>)

Author: Gavin Cahill

Published: 2025-11-17T00:00:00Z

Content type: opinion

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Azure](<https://devfeed.tech/topics/azure.md>), [Microsoft](<https://devfeed.tech/topics/microsoft.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>), [cloud-infrastructure](<https://devfeed.tech/topics/cloud-infrastructure.md>)

Tags: [2025](<https://devfeed.tech/tags/2025.md>), [after-the-retrospective](<https://devfeed.tech/tags/after-the-retrospective.md>), [azure](<https://devfeed.tech/tags/azure.md>), [backup](<https://devfeed.tech/tags/backup.md>), [best-practices](<https://devfeed.tech/tags/best-practices.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [infrastructure](<https://devfeed.tech/tags/infrastructure.md>), [microsoft](<https://devfeed.tech/tags/microsoft.md>), [outage](<https://devfeed.tech/tags/outage.md>), [outages](<https://devfeed.tech/tags/outages.md>), [recovery](<https://devfeed.tech/tags/recovery.md>), [uptime](<https://devfeed.tech/tags/uptime.md>), [xbox](<https://devfeed.tech/tags/xbox.md>)

### AI overview

This article examines reliability lessons from the October 2025 global outage affecting Microsoft Azure Front Door, Azure Content Delivery Network, and related Microsoft services. It emphasizes customer responsibility for uptime, redundancy, tested failover, and active-active infrastructure.

### Source excerpt

In October 2025, Microsoft Azure Front Door and Content Delivery Network suffered a global outage. Find out what your team can do to minimize the impact of similar outages in the future.

## Gremlin's unofficial Microsoft Ignite 2025 reliability track

DevFeed: [Gremlin's unofficial Microsoft Ignite 2025 reliability track](<https://devfeed.tech/articles/gremlin-s-unofficial-microsoft-ignite-2025-reliability-track-11580.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/gremlins-unofficial-microsoft-ignite-2025-reliability-track>)

Author: Gavin Cahill

Published: 2025-11-12T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Azure](<https://devfeed.tech/topics/azure.md>), [Microsoft](<https://devfeed.tech/topics/microsoft.md>), [Resilience](<https://devfeed.tech/topics/resilience.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>), [configuration](<https://devfeed.tech/topics/configuration.md>), [autoscaling](<https://devfeed.tech/topics/autoscaling.md>), [Replication](<https://devfeed.tech/topics/replication.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>)

Tags: [2025](<https://devfeed.tech/tags/2025.md>), [ai](<https://devfeed.tech/tags/ai.md>), [autoscaling](<https://devfeed.tech/tags/autoscaling.md>), [azure](<https://devfeed.tech/tags/azure.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [cloud-native](<https://devfeed.tech/tags/cloud-native.md>), [conference](<https://devfeed.tech/tags/conference.md>), [configuration](<https://devfeed.tech/tags/configuration.md>), [gremlin](<https://devfeed.tech/tags/gremlin.md>), [industry](<https://devfeed.tech/tags/industry.md>), [microsoft](<https://devfeed.tech/tags/microsoft.md>), [recovery](<https://devfeed.tech/tags/recovery.md>), [replication](<https://devfeed.tech/tags/replication.md>), [resilience](<https://devfeed.tech/tags/resilience.md>), [secure-by-default](<https://devfeed.tech/tags/secure-by-default.md>), [shared-responsibility](<https://devfeed.tech/tags/shared-responsibility.md>), [storage](<https://devfeed.tech/tags/storage.md>)

### AI overview

Gremlin's unofficial Microsoft Ignite 2025 reliability track curates conference sessions about building resilient systems with Microsoft and Azure tools. The sessions cover reliability assessment and configuration, autoscaling and replication, failure simulation, recovery orchestration, shared responsibility, and secure backup practices for cloud and AI-ready applications.

### Source excerpt

Check out the Gremlin-curated unofficial track of reliability talks at Microsoft Ignite 2025.

## Improve Kubernetes reliability faster with Gremlin and Dynatrace

DevFeed: [Improve Kubernetes reliability faster with Gremlin and Dynatrace](<https://devfeed.tech/articles/improve-kubernetes-reliability-faster-with-gremlin-and-dynatrace-11649.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/improve-kubernetes-reliability-faster-with-gremlin-and-dynatrace>)

Author: Gavin Cahill

Published: 2025-11-10T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [dynatrace](<https://devfeed.tech/topics/dynatrace.md>), [observability](<https://devfeed.tech/topics/observability.md>), [Chaos Engineering](<https://devfeed.tech/topics/chaos-engineering.md>), [ai observability](<https://devfeed.tech/topics/ai-observability.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [announcements](<https://devfeed.tech/tags/announcements.md>), [cloud-native](<https://devfeed.tech/tags/cloud-native.md>), [dynatrace](<https://devfeed.tech/tags/dynatrace.md>), [gremlin](<https://devfeed.tech/tags/gremlin.md>), [integration](<https://devfeed.tech/tags/integration.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [observability](<https://devfeed.tech/tags/observability.md>), [testing](<https://devfeed.tech/tags/testing.md>)

### AI overview

The article presents a strategic integration between Gremlin and Dynatrace that automatically discovers Kubernetes services configured in Dynatrace, making fault-injection testing faster to set up. It explains how health checks use observability metrics such as error rates and latency to evaluate experiments, validate monitoring and alerting, and improve reliability across cloud-native architectures.

### Source excerpt

It's easier than ever to start testing Kubernetes with Dynatrace and Gremlin. The new strategic integration automatically discovers objects to make testing set up simple and fast.

## Reliability lessons from the 2025 AWS DynamoDB outage

DevFeed: [Reliability lessons from the 2025 AWS DynamoDB outage](<https://devfeed.tech/articles/reliability-lessons-from-the-2025-aws-dynamodb-outage-11694.md>)

Original publisher: [Read original article](<https://www.gremlin.com/blog/reliability-lessons-from-the-2025-aws-dynamodb-outage>)

Author: Gavin Cahill

Published: 2025-11-07T00:00:00Z

Content type: article

Language: en

Sources: [Gremlin Blog](<https://devfeed.tech/sources/gremlin-blog.md>)

Topics: [Amazon DynamoDB](<https://devfeed.tech/topics/amazon-dynamodb.md>), [Amazon Web Services](<https://devfeed.tech/topics/aws.md>), [Complex Systems](<https://devfeed.tech/topics/complex-systems.md>), [systems](<https://devfeed.tech/topics/systems.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>)

Tags: [2025](<https://devfeed.tech/tags/2025.md>), [amazon-dynamodb](<https://devfeed.tech/tags/amazon-dynamodb.md>), [applications](<https://devfeed.tech/tags/applications.md>), [aws](<https://devfeed.tech/tags/aws.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [industry](<https://devfeed.tech/tags/industry.md>), [outage](<https://devfeed.tech/tags/outage.md>), [outages](<https://devfeed.tech/tags/outages.md>), [systems](<https://devfeed.tech/tags/systems.md>)

### AI overview

The article examines reliability lessons from the October 2025 AWS DynamoDB outage in US-EAST-1, which began with a DNS issue and was followed by an Amazon EC2 outage. It recommends mapping service dependencies, testing how applications behave when dependencies are unavailable, and distinguishing critical from non-critical dependencies.

### Source excerpt

In October 2025, Amazon DynamoDB had a massive outage that took down hundreds of systems. Find out what your team can do to minimize the impact of similar outages in the future.

[Next page](<https://devfeed.tech/sources/gremlin-blog.md?cursor=WyIyMDI1LTExLTA3VDAwOjAwOjAwKzAwOjAwIiwgImRlMjBjY2IxLWI2OGYtNDljYy05MTkwLTU3ODViMDEzNDYwZiJd>)