SlideShare a Scribd company logo
Kubernetes at Datadog Scale
Datadog is a monitoring
and analytics platform that
helps companies improve
observability of their
infrastructure and
applications
Ara Pulido
Developer Advocate at Datadog
@arapulido
ara.pulido@datadoghq.com
Kubernetes at Datadog Scale
19 major releases since
2015
+90k commits
+2k contributors
Kubernetes popularity since 2016
Kubernetes popularity since 2016
Kubernetes vs Mariah Carey
My journey with Kubernetes
2 YEARS FULL TIME IN KUBERNETES PROJECTS
MAINTAINER OF A YOUTUBE KUBERNETES CHANNEL
CKA; PART OF THE TEAM THAT CREATED CKAD
Kubernetes at Datadog Scale
Kubernetes at Datadog Scale
Dozens of clusters
+1K nodes / cluster
Multicloud
Survey: number of nodes / cluster
Source: https://github.com/MagalixCorp/kubernetes-autoscale-survey
What are the
common
scalability issues?
Networking
Kubernetes
networking
is not easy
Kubernetes Networking 101
POD NETWORKING
DNS
SERVICE NETWORKING
Pod Networking
Pod
172.17.0.2
Pod
172.17.0.3
EVERY POD GETS A UNIQUE IP
EVERY POD CAN TALK TO ANY OTHER POD IN THE CLUSTER
Service Networking
Client
172.17.0.6
Pod
172.17.0.4
Pod
172.17.0.5
Service
10.107.122.52
kube-proxy
DNS
Service
myservice.default.svc.cluster.local 10.97.239.227
Pod Networking
Pod Networking
Pod
172.17.0.2
Pod
172.17.0.3
EVERY POD GETS A UNIQUE IP
EVERY POD CAN TALK TO ANY OTHER POD IN THE CLUSTER
Pod
172.17.0.2
Pod
172.17.0.3
CNI Container Network
Interface
Overlays (flannel, weavenet)
Pod
10.244.2.1
10.244.1.0/24
10.244.0.0/16
10.244.2.0/24
10.244.0.0/16
Pod
10.244.1.1
192.168.0.1 192.168.0.2
cni0
flannel0
cni0
flannel0
Overlays (flannel, weavenet)
Pod
10.244.2.1
10.244.1.0/24
10.244.0.0/16
10.244.2.0/24
10.244.0.0/16
Pod
10.244.1.1
192.168.0.1 192.168.0.2
cni0
flannel0
cni0
flannel0
I WAS HERE
Overlays (flannel, weavenet)
Pod
10.244.2.1
Pod
10.244.1.1
192.168.0.1 192.168.0.2
10.244.1.0/24
10.244.0.0/16
10.244.2.0/24
10.244.0.0/16
cni0
flannel0
cni0
flannel0
Overlays (flannel, weavenet)
Pod
10.244.2.1
Pod
10.244.1.1
192.168.0.1 192.168.0.2
10.244.1.0/24
10.244.0.0/16
10.244.2.0/24
10.244.0.0/16
cni0
flannel0
cni0
flannel0
Overlays
Pod
10.244.2.1
10.244.1.0/24
10.244.0.0/16
10.244.2.0/24
10.244.0.0/16
cni0
flannel0
cni0
flannel0
Pod
10.244.1.1
192.168.0.1 192.168.0.2
Src: 10.244.1.1
Dst: 10.244.2.1
Overlays
10.244.1.0/24 dev cni0 proto kernel scope link src 10.244.1.0
10.244.0.0/16 dev flannel proto kernel scope link src 10.244.1.1
Pod
10.244.2.1
10.244.1.0/24
10.244.0.0/16
10.244.2.0/24
10.244.0.0/16
cni0
flannel0
cni0
flannel0
Pod
10.244.1.1
192.168.0.1 192.168.0.2
Src: 10.244.1.1
Dst: 10.244.2.1
Overlays
Src: 192.168.0.1
Dst: 192.168.0.2
Src: 10.244.1.1
Dst: 10.244.2.1
Pod
10.244.2.1
10.244.1.0/24
10.244.0.0/16
10.244.2.0/24
10.244.0.0/16
cni0
flannel0
cni0
flannel0
Pod
10.244.1.1
192.168.0.1 192.168.0.2
10.244.1.0/24 dev cni0 proto kernel scope link src 10.244.1.0
10.244.0.0/16 dev flannel proto kernel scope link src 10.244.1.1
BGP (Calico)
Pod
10.244.162.131/32 10.244.143.129/32
Pod
10.244.162.131
192.168.0.1 192.168.0.2
BGP BGP
10.244.143.129
calixxxx calixxxx
BGP (Calico)
10.244.162.131 dev cali12d4a061371 scope link
10.244.143.129 via 192.168.0.2 dev eth0
10.244.143.129 dev cali12d4bf881 scope link
10.244.162.131 via 192.168.0.1 dev eth0
Pod
10.244.162.131/32 10.244.143.129/32calixxxx calixxxx
Pod
10.244.162.131
192.168.0.1 192.168.0.2
BGP BGP
10.244.143.129
BGP (Calico)
10.244.162.131 dev cali12d4a061371 scope link
Pod
10.244.162.131/32 10.244.143.129/32calixxxx calixxxx
Pod
10.244.162.131
192.168.0.1 192.168.0.2
BGP BGP
10.244.143.129
BGP (Calico)
10.244.143.129 via 192.168.0.2 dev eth0
Pod
10.244.162.131/32 10.244.143.129/32calixxxx calixxxx
Pod
10.244.162.131
192.168.0.1 192.168.0.2
BGP BGP
10.244.143.129
Direct Pod Routing (AWS, Lyft)
Pod
10.0.0.3
Pod
10.0.0.4
SDN
Direct Pod Routing (AWS, Lyft)
Pod
10.0.0.3
Pod
10.0.0.4
SDN
DATADOG
Direct Pod Routing (AWS, Lyft)
Pod
10.0.0.3
Pod
10.0.0.4
SDN
Be ready to become an
“expert” in the CNI plugin
of your choice
Service
Networking
Client
172.17.0.6
Pod
172.17.0.4
Pod
172.17.0.5
Service
10.107.122.52
kube-proxy
Service Networking
iptables mode (default)
Client
172.17.0.6
Pod 1
172.17.0.4
Pod 2
172.17.0.5
Iptables
10.107.122.52
kube-proxy API
Watch svc, endpoints
iptables mode (default)
Client
172.17.0.6
Pod 1
172.17.0.4
Pod 2
172.17.0.5
Iptables
10.107.122.52
kube-proxy API
Watch svc, endpoints
I WAS HERE
iptables mode (default)
Client
172.17.0.6
Pod 1
172.17.0.4
Pod 2
172.17.0.5
Iptables
10.107.122.52
kube-proxy API
Watch svc, endpoints
iptables mode (default)
Chain KUBE-SERVICES (2 references)
KUBE-SVC-4N57TFCL4MD7ZTDA tcp -- anywhere 10.107.122.52
/* default/nginx: cluster IP */ tcp dpt:www
Chain KUBE-SVC-4N57TFCL4MD7ZTDA (1 references)
target prot opt source destination
KUBE-SEP-UZXILYFQQ2IZUWN5 all -- anywhere anywhere
statistic mode random probability 0.50000000000
KUBE-SEP-43IWXJI557JKCKCF all -- anywhere anywhere
Chain KUBE-SEP-43IWXJI557JKCKCF (1 references)
target prot opt source destination
KUBE-MARK-MASQ all -- 172.17.0.5 anywhere
DNAT tcp -- anywhere anywhere tcp
to:172.17.0.5:80
iptables mode (default)
Chain KUBE-SERVICES (2 references)
KUBE-SVC-4N57TFCL4MD7ZTDA tcp -- anywhere 10.107.122.52
/* default/nginx: cluster IP */ tcp dpt:www
iptables mode (default)
Chain KUBE-SERVICES (2 references)
KUBE-SVC-4N57TFCL4MD7ZTDA tcp -- anywhere 10.107.122.52
/* default/nginx: cluster IP */ tcp dpt:www
Chain KUBE-SVC-4N57TFCL4MD7ZTDA (1 references)
target prot opt source destination
KUBE-SEP-UZXILYFQQ2IZUWN5 all -- anywhere anywhere
statistic mode random probability 0.50000000000
KUBE-SEP-43IWXJI557JKCKCF all -- anywhere anywhere
iptables mode (default)
Chain KUBE-SERVICES (2 references)
KUBE-SVC-4N57TFCL4MD7ZTDA tcp -- anywhere 10.107.122.52
/* default/nginx: cluster IP */ tcp dpt:www
Chain KUBE-SVC-4N57TFCL4MD7ZTDA (1 references)
target prot opt source destination
KUBE-SEP-UZXILYFQQ2IZUWN5 all -- anywhere anywhere
statistic mode random probability 0.50000000000
KUBE-SEP-43IWXJI557JKCKCF all -- anywhere anywhere
Chain KUBE-SEP-43IWXJI557JKCKCF (1 references)
target prot opt source destination
KUBE-MARK-MASQ all -- 172.17.0.5 anywhere
DNAT tcp -- anywhere anywhere tcp
to:172.17.0.5:80
GROWS LINEARLY WITH PODS AND SERVICES
THERE IS NO ROOM FOR MORE FEATURES
FOR EVERY CHANGE, THE WHOLE TABLE NEEDS
TO BE RESYNC
iptables mode (default)
GA SINCE 1.11
IPVS mode
GA SINCE 1.11
IPVS mode
DATADOG
ATOMIC CHANGES (NO NEED TO RESYNC EVERY RULE)
O(1) COMPLEXITY
DIFFERENT LOAD BALANCING ALGORITHMS
ipvsadm -ln --tcp-service 10.107.122.52:80
Prot LocalAddress:Port Scheduler Flags
-> RemoteAddress:Port Forward Weight ActiveConn InActConn
TCP 10.107.122.52:80 rr
-> 172.17.0.4:80 Masq 1 0 37
-> 172.17.0.5:80 Masq 1 0 44
GA SINCE 1.11
IPVS mode
GA SINCE 1.11
IPVS mode
Many large deployments
are already moving to
IPVS and newer solutions
are being developed
(eBPF based)
DNS
Service
10.97.239.227myservice.default.svc.cluster.local
Kubernetes at Datadog Scale
NodeLocal DNSCache is now
part of Kubernetes (Beta 1.15)
DNS Local Cache
` Client
DNS
Cache CoreDNS
DATADOG
Take aways
The bad
KUBERNETES IS FLEXIBLE FOR DEVS, COMPLEX FOR OPS
YOU WILL HIT BUGS
CNI PLUGINS WORK *VERY* DIFFERENTLY. LEARN YOURS.
The good
THE ECOSYSTEM PICKS UP QUICKLY
DEVELOPMENT EXPERIENCE DOESN’T CHANGE (MUCH)
CHANGES DON’T HAVE TO HAPPEN FOR ALL
WORKLOADS DIRECTLY
Thank you!
Ad

Recommended

PDF
How to monitor NGINX
Server Density
 
PPTX
[오픈소스컨설팅] Linux Network Troubleshooting
Open Source Consulting
 
PDF
Optimizing kubernetes networking
Laurent Bernaille
 
PDF
How to tune Kafka® for production
confluent
 
PDF
How the OOM Killer Deleted My Namespace
Laurent Bernaille
 
PDF
Making the most out of kubernetes audit logs
Laurent Bernaille
 
PDF
Evolution of kube-proxy (Brussels, Fosdem 2020)
Laurent Bernaille
 
PDF
Kubernetes the Very Hard Way. Velocity Berlin 2019
Laurent Bernaille
 
PDF
Tuning TCP and NGINX on EC2
Chartbeat
 
PDF
Load Balancing Applications with NGINX in a CoreOS Cluster
Kevin Jones
 
PDF
Load Balancing MySQL with HAProxy - Slides
Severalnines
 
PDF
Kubernetes DNS Horror Stories
Laurent Bernaille
 
PDF
Running Kubernetes in Production: A Million Ways to Crash Your Cluster - Cont...
Henning Jacobs
 
PPTX
Learn nginx in 90mins
Larry Cai
 
PDF
High Performance Erlang - Pitfalls and Solutions
Yinghai Lu
 
PPTX
5 things you didn't know nginx could do
sarahnovotny
 
PPTX
Packet Walk(s) In Kubernetes
Don Jayakody
 
PDF
From pets to cattle - powered by CoreOS, docker, Mesos & nginx
QAware GmbH
 
PDF
Load Balancing with Nginx
Marian Marinov
 
PDF
10 ways to shoot yourself in the foot with kubernetes, #9 will surprise you! ...
Laurent Bernaille
 
KEY
Nginx - Tips and Tricks.
Harish S
 
PDF
Extending functionality in nginx, with modules!
Trygve Vea
 
PPT
Nginx internals
liqiang xu
 
PDF
Ensuring Kubernetes Cost Efficiency across (many) Clusters - DevOps Gathering...
Henning Jacobs
 
PDF
5 Vampir Configuration At IU
PTIHPA
 
PDF
Optimizing Kubernetes Resource Requests/Limits for Cost-Efficiency and Latenc...
Henning Jacobs
 
PPTX
5 things you didn't know nginx could do velocity
sarahnovotny
 
PDF
How To Set Up SQL Load Balancing with HAProxy - Slides
Severalnines
 
PDF
Kubernetes at Datadog Scale - Ara Pulido
PROIDEA
 
PDF
Networking in Kubernetes
Minhan Xia
 

More Related Content

What's hot (20)

PDF
Tuning TCP and NGINX on EC2
Chartbeat
 
PDF
Load Balancing Applications with NGINX in a CoreOS Cluster
Kevin Jones
 
PDF
Load Balancing MySQL with HAProxy - Slides
Severalnines
 
PDF
Kubernetes DNS Horror Stories
Laurent Bernaille
 
PDF
Running Kubernetes in Production: A Million Ways to Crash Your Cluster - Cont...
Henning Jacobs
 
PPTX
Learn nginx in 90mins
Larry Cai
 
PDF
High Performance Erlang - Pitfalls and Solutions
Yinghai Lu
 
PPTX
5 things you didn't know nginx could do
sarahnovotny
 
PPTX
Packet Walk(s) In Kubernetes
Don Jayakody
 
PDF
From pets to cattle - powered by CoreOS, docker, Mesos & nginx
QAware GmbH
 
PDF
Load Balancing with Nginx
Marian Marinov
 
PDF
10 ways to shoot yourself in the foot with kubernetes, #9 will surprise you! ...
Laurent Bernaille
 
KEY
Nginx - Tips and Tricks.
Harish S
 
PDF
Extending functionality in nginx, with modules!
Trygve Vea
 
PPT
Nginx internals
liqiang xu
 
PDF
Ensuring Kubernetes Cost Efficiency across (many) Clusters - DevOps Gathering...
Henning Jacobs
 
PDF
5 Vampir Configuration At IU
PTIHPA
 
PDF
Optimizing Kubernetes Resource Requests/Limits for Cost-Efficiency and Latenc...
Henning Jacobs
 
PPTX
5 things you didn't know nginx could do velocity
sarahnovotny
 
PDF
How To Set Up SQL Load Balancing with HAProxy - Slides
Severalnines
 
Tuning TCP and NGINX on EC2
Chartbeat
 
Load Balancing Applications with NGINX in a CoreOS Cluster
Kevin Jones
 
Load Balancing MySQL with HAProxy - Slides
Severalnines
 
Kubernetes DNS Horror Stories
Laurent Bernaille
 
Running Kubernetes in Production: A Million Ways to Crash Your Cluster - Cont...
Henning Jacobs
 
Learn nginx in 90mins
Larry Cai
 
High Performance Erlang - Pitfalls and Solutions
Yinghai Lu
 
5 things you didn't know nginx could do
sarahnovotny
 
Packet Walk(s) In Kubernetes
Don Jayakody
 
From pets to cattle - powered by CoreOS, docker, Mesos & nginx
QAware GmbH
 
Load Balancing with Nginx
Marian Marinov
 
10 ways to shoot yourself in the foot with kubernetes, #9 will surprise you! ...
Laurent Bernaille
 
Nginx - Tips and Tricks.
Harish S
 
Extending functionality in nginx, with modules!
Trygve Vea
 
Nginx internals
liqiang xu
 
Ensuring Kubernetes Cost Efficiency across (many) Clusters - DevOps Gathering...
Henning Jacobs
 
5 Vampir Configuration At IU
PTIHPA
 
Optimizing Kubernetes Resource Requests/Limits for Cost-Efficiency and Latenc...
Henning Jacobs
 
5 things you didn't know nginx could do velocity
sarahnovotny
 
How To Set Up SQL Load Balancing with HAProxy - Slides
Severalnines
 

Similar to Kubernetes at Datadog Scale (20)

PDF
Kubernetes at Datadog Scale - Ara Pulido
PROIDEA
 
PDF
Networking in Kubernetes
Minhan Xia
 
PDF
Kubernetes Networking
CJ Cullen
 
PPTX
Nynog-K8s-networking-101.pptx
DanielHertzberg4
 
PDF
The Journey to the Kubernetes networking.pdf
ChenYiHuang5
 
PPTX
KuberNETes - meetup
Nathan Ness
 
PDF
Deep dive in container service discovery
Docker, Inc.
 
PDF
Getting Started with Kubernetes
VMware Tanzu
 
PDF
Introduction to Kubernetes Workshop
Bob Killen
 
PDF
Kubernetes Networking 101 kubecon EU 2022
ssuser1490e8
 
PDF
Lessons learned and challenges faced while running Kubernetes at Scale
Sidhartha Mani
 
PPTX
Kubernetes Networking 101
Weaveworks
 
ODP
Network services on Kubernetes on premise
Hans Duedal
 
PDF
Packet walks in_kubernetes-v4
InfraEngineer
 
PDF
Cncf k8s_network_part1
Erhwen Kuo
 
PDF
DevJam 2019 - Introduction to Kubernetes
Ronny Trommer
 
PDF
Getting started with kubernetes
Bob Killen
 
PDF
Introduction to kubernetes
Gabriel Carro
 
PPTX
Introduction+to+Kubernetes-Details-D.pptx
SantoshPandey160
 
PPTX
Introduction to Kubernetes
Vishal Biyani
 
Kubernetes at Datadog Scale - Ara Pulido
PROIDEA
 
Networking in Kubernetes
Minhan Xia
 
Kubernetes Networking
CJ Cullen
 
Nynog-K8s-networking-101.pptx
DanielHertzberg4
 
The Journey to the Kubernetes networking.pdf
ChenYiHuang5
 
KuberNETes - meetup
Nathan Ness
 
Deep dive in container service discovery
Docker, Inc.
 
Getting Started with Kubernetes
VMware Tanzu
 
Introduction to Kubernetes Workshop
Bob Killen
 
Kubernetes Networking 101 kubecon EU 2022
ssuser1490e8
 
Lessons learned and challenges faced while running Kubernetes at Scale
Sidhartha Mani
 
Kubernetes Networking 101
Weaveworks
 
Network services on Kubernetes on premise
Hans Duedal
 
Packet walks in_kubernetes-v4
InfraEngineer
 
Cncf k8s_network_part1
Erhwen Kuo
 
DevJam 2019 - Introduction to Kubernetes
Ronny Trommer
 
Getting started with kubernetes
Bob Killen
 
Introduction to kubernetes
Gabriel Carro
 
Introduction+to+Kubernetes-Details-D.pptx
SantoshPandey160
 
Introduction to Kubernetes
Vishal Biyani
 
Ad

More from Docker, Inc. (20)

PDF
Containerize Your Game Server for the Best Multiplayer Experience
Docker, Inc.
 
PDF
How to Improve Your Image Builds Using Advance Docker Build
Docker, Inc.
 
PDF
Build & Deploy Multi-Container Applications to AWS
Docker, Inc.
 
PDF
Securing Your Containerized Applications with NGINX
Docker, Inc.
 
PDF
How To Build and Run Node Apps with Docker and Compose
Docker, Inc.
 
PDF
Hands-on Helm
Docker, Inc.
 
PDF
Distributed Deep Learning with Docker at Salesforce
Docker, Inc.
 
PDF
The First 10M Pulls: Building The Official Curl Image for Docker Hub
Docker, Inc.
 
PDF
Monitoring in a Microservices World
Docker, Inc.
 
PDF
COVID-19 in Italy: How Docker is Helping the Biggest Italian IT Company Conti...
Docker, Inc.
 
PDF
Predicting Space Weather with Docker
Docker, Inc.
 
PDF
Become a Docker Power User With Microsoft Visual Studio Code
Docker, Inc.
 
PDF
How to Use Mirroring and Caching to Optimize your Container Registry
Docker, Inc.
 
PDF
Monolithic to Microservices + Docker = SDLC on Steroids!
Docker, Inc.
 
PDF
Labels, Labels, Labels
Docker, Inc.
 
PDF
Using Docker Hub at Scale to Support Micro Focus' Delivery and Deployment Model
Docker, Inc.
 
PDF
Build & Deploy Multi-Container Applications to AWS
Docker, Inc.
 
PDF
From Fortran on the Desktop to Kubernetes in the Cloud: A Windows Migration S...
Docker, Inc.
 
PDF
Developing with Docker for the Arm Architecture
Docker, Inc.
 
PDF
Sharing is Caring: How to Begin Speaking at Conferences
Docker, Inc.
 
Containerize Your Game Server for the Best Multiplayer Experience
Docker, Inc.
 
How to Improve Your Image Builds Using Advance Docker Build
Docker, Inc.
 
Build & Deploy Multi-Container Applications to AWS
Docker, Inc.
 
Securing Your Containerized Applications with NGINX
Docker, Inc.
 
How To Build and Run Node Apps with Docker and Compose
Docker, Inc.
 
Hands-on Helm
Docker, Inc.
 
Distributed Deep Learning with Docker at Salesforce
Docker, Inc.
 
The First 10M Pulls: Building The Official Curl Image for Docker Hub
Docker, Inc.
 
Monitoring in a Microservices World
Docker, Inc.
 
COVID-19 in Italy: How Docker is Helping the Biggest Italian IT Company Conti...
Docker, Inc.
 
Predicting Space Weather with Docker
Docker, Inc.
 
Become a Docker Power User With Microsoft Visual Studio Code
Docker, Inc.
 
How to Use Mirroring and Caching to Optimize your Container Registry
Docker, Inc.
 
Monolithic to Microservices + Docker = SDLC on Steroids!
Docker, Inc.
 
Labels, Labels, Labels
Docker, Inc.
 
Using Docker Hub at Scale to Support Micro Focus' Delivery and Deployment Model
Docker, Inc.
 
Build & Deploy Multi-Container Applications to AWS
Docker, Inc.
 
From Fortran on the Desktop to Kubernetes in the Cloud: A Windows Migration S...
Docker, Inc.
 
Developing with Docker for the Arm Architecture
Docker, Inc.
 
Sharing is Caring: How to Begin Speaking at Conferences
Docker, Inc.
 
Ad

Recently uploaded (20)

PDF
GenAI Opportunities and Challenges - Where 370 Enterprises Are Focusing Now.pdf
Priyanka Aash
 
PDF
Quantum AI: Where Impossible Becomes Probable
Saikat Basu
 
PPTX
Wenn alles versagt - IBM Tape schützt, was zählt! Und besonders mit dem neust...
Josef Weingand
 
PDF
cnc-processing-centers-centateq-p-110-en.pdf
AmirStern2
 
PDF
The Growing Value and Application of FME & GenAI
Safe Software
 
PDF
Coordinated Disclosure for ML - What's Different and What's the Same.pdf
Priyanka Aash
 
PDF
"Database isolation: how we deal with hundreds of direct connections to the d...
Fwdays
 
PDF
Connecting Data and Intelligence: The Role of FME in Machine Learning
Safe Software
 
PDF
Salesforce Summer '25 Release Frenchgathering.pptx.pdf
yosra Saidani
 
PDF
Enhance GitHub Copilot using MCP - Enterprise version.pdf
Nilesh Gule
 
PDF
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Safe Software
 
PDF
Using the SQLExecutor for Data Quality Management: aka One man's love for the...
Safe Software
 
PPTX
Securing Account Lifecycles in the Age of Deepfakes.pptx
FIDO Alliance
 
PPTX
Curietech AI in action - Accelerate MuleSoft development
shyamraj55
 
PDF
A Constitutional Quagmire - Ethical Minefields of AI, Cyber, and Privacy.pdf
Priyanka Aash
 
PDF
AI Agents and FME: A How-to Guide on Generating Synthetic Metadata
Safe Software
 
PPTX
You are not excused! How to avoid security blind spots on the way to production
Michele Leroux Bustamante
 
PDF
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
PDF
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
caoyixuan2019
 
PDF
9-1-1 Addressing: End-to-End Automation Using FME
Safe Software
 
GenAI Opportunities and Challenges - Where 370 Enterprises Are Focusing Now.pdf
Priyanka Aash
 
Quantum AI: Where Impossible Becomes Probable
Saikat Basu
 
Wenn alles versagt - IBM Tape schützt, was zählt! Und besonders mit dem neust...
Josef Weingand
 
cnc-processing-centers-centateq-p-110-en.pdf
AmirStern2
 
The Growing Value and Application of FME & GenAI
Safe Software
 
Coordinated Disclosure for ML - What's Different and What's the Same.pdf
Priyanka Aash
 
"Database isolation: how we deal with hundreds of direct connections to the d...
Fwdays
 
Connecting Data and Intelligence: The Role of FME in Machine Learning
Safe Software
 
Salesforce Summer '25 Release Frenchgathering.pptx.pdf
yosra Saidani
 
Enhance GitHub Copilot using MCP - Enterprise version.pdf
Nilesh Gule
 
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Safe Software
 
Using the SQLExecutor for Data Quality Management: aka One man's love for the...
Safe Software
 
Securing Account Lifecycles in the Age of Deepfakes.pptx
FIDO Alliance
 
Curietech AI in action - Accelerate MuleSoft development
shyamraj55
 
A Constitutional Quagmire - Ethical Minefields of AI, Cyber, and Privacy.pdf
Priyanka Aash
 
AI Agents and FME: A How-to Guide on Generating Synthetic Metadata
Safe Software
 
You are not excused! How to avoid security blind spots on the way to production
Michele Leroux Bustamante
 
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
caoyixuan2019
 
9-1-1 Addressing: End-to-End Automation Using FME
Safe Software
 

Kubernetes at Datadog Scale