惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
Vercel News
Vercel News
Last Week in AI
Last Week in AI
H
Help Net Security
The Cloudflare Blog
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
B
Blog RSS Feed
云风的 BLOG
云风的 BLOG
I
InfoQ
U
Unit 42
美团技术团队
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
宝玉的分享
宝玉的分享
量子位
博客园_首页

Datadog | The Monitor blog

Introducing our open source AI-native SAST Instrument and monitor Boomi integration flows with OpenTelemetry and Datadog Not all index scans are equal: How we cut query latency by over 99% Platform engineering metrics: What to measure and what to ignore Integrate Recorded Future threat intelligence with Datadog Cloud SIEM CI/CD security: threat modeling using a MITRE-style threat matrix CI/CD security: How to secure your GitHub ecosystem Ingress NGINX is EOL: A practical guide for migrating to Kubernetes Gateway API Operating agentic AI with Amazon Bedrock AgentCore and Datadog LLM Observability: Lessons from NTT DATA Introducing the Datadog Code Security MCP Capture and analyze custom heatmaps in Session Replay Understand session replays faster with AI summaries and smart chapters Monitor ClickHouse query performance with Datadog Database Monitoring How we designed empathetic alert sounds for on-call engineers Search and act across Datadog to resolve issues faster with Bits Assistant Measure the business impact of every product change with Datadog Experiments Analyzing round trip query latency Configuring JavaScript caches for better performance Introducing Bits AI Dev Agent for Code Security Datadog achieves ISO 42001 certification for responsible AI Monitor Nutanix clusters, hosts, and VMs with Datadog Monitor Juniper Mist in Datadog A new Host Map for modern infrastructure Annotate traces to improve LLM quality with Datadog LLM Observability What’s new in Cloud SIEM: AI-powered investigations, enhanced threat intelligence, and scalable security operations Explore Kubernetes with native OpenTelemetry data Monitor Oracle Fusion Cloud Applications with Datadog Announcing the Datadog Terraform provider v4.0.0 Scaling Kubernetes workloads on custom metrics How to design cloud environments for AI-powered threat analysis
How Datadog Feature Flags is resilient to cloud provider ...
2025-11-19 · via Datadog | The Monitor blog

As major incidents like AWS’s October 2025 outage illustrate, modern systems are immensely interconnected. A failure in one can lead to a cascade of downstream problems. In this case, issues with DNS resolution for DynamoDB led to widespread disruptions with other AWS services and, subsequently, thousands of applications and services that rely on that infrastructure. Even if your application wasn’t hosted on AWS, integral parts of your environment—like your feature flagging service—might have been affected. Losing those services can be just as debilitating as if your application itself went down.

In this post, we’ll look at how Datadog Feature Flags continued to function during this outage due to its architectural design focused on resilience. By distributing configuration data globally via edge content delivery networks (CDNs) and evaluating feature flags locally, Datadog’s system maintained performance and consistency even as parts of the broader cloud ecosystem experienced instability. This localized evaluation and distributed availability also ensures that Datadog Feature Flags never become a single point of failure for customers, even in the unlikely event of a Datadog or CDN outage.

An architecture built for resilience

The reliability of Datadog Feature Flags hinges on a simple principle: evaluate flags locally using a cached configuration object distributed globally. This architecture provides two key layers of protection during incidents like the recent AWS outage:

  • Independence for evaluation: Since the flag evaluation itself is local, it has no dependency on cloud providers like AWS, Google Cloud, or Azure or any other regional service. As long as your application is running, the flags can be evaluated.
  • Independence for distribution: The flag configuration files are served by Fastly, a global CDN provider, which is resilient to specific cloud provider outages. Applications initializing during an outage can still fetch their configurations, and applications that are already running simply use their cached versions.

Instead of calling a server for every feature flag decision, the Datadog flagging SDK operates in two main steps:

  1. Initialization: When your application starts, the SDK makes a single request to fetch a JSON configuration object that contains all precomputed assignments, or all the rules for all your feature flags. This object is not hosted on a traditional application server but is distributed across a global edge network (Fastly).
  2. Local Evaluation: Once this configuration is fetched, it’s cached by the SDK. From that point on, every time your code checks a feature flag, the decision happens instantly and locally within your own application. No network call is required to determine if a feature should be on or off for a given user.

These design choices mean that even if our primary servers were to go down, the CDN’s cached configurations would remain available, insulating your flag evaluations from the failure and ensuring that your application remains operational.

Deploy safely even during cloud provider outages

Feature flagging is a vital component of modern applications. Datadog Feature Flags is built for resilience by combining distributed architecture, local evaluation, and fallback rules to launch and deploy safely without incidents, even if external systems falter.

Datadog Feature Flags is now in preview. See our documentation for more information and to request access. Also, see how you can use the free Updog.ai service to detect service outages early. For example, Updog.ai detected the Amazon DynamoDB degradation 32 minutes before AWS updated its own official status page. This same technology powers Datadog’s in-app External Provider Status feature, helping engineering teams respond faster and with more context. If you’re not a customer, get started now with a 14-day free trial.