SlideShare a Scribd company logo
gVisor, Kata Container, Firecracker, Docker
Who is Who in the Container Space
@joerg_schad
2
Jörg Schad, PhD
Head of Engineering and ML
@ArangoDB
● Suki.ai
● Mesosphere
● Architect @SAP Hana
● PhD Distributed DB
Systems
● Twitter: @joerg_schad
4
● Native Multi Model Database
○ Stores, K/V, Documents & Graphs
● Distributed
○ Graphs can span multiple nodes
● AQL - SQL-like multi-model query language
● ACID Transactions including Multi Collection
Transactions
Databases & Container
5https://landscape.cncf.io/
ArangoDB Oasis
● Managed Service for ArangoDB
● Run many ArangoDB deployments in the cloud
○ AWS, Google, Azure, ...
● Fully managed deployments
● Security for 2020 and beyond
● Highly scalable
Some structure
7
Container Runtimes “Secure” Container
© Gerard Julien/AFP
Containers
There are no containers...
9
Container Internals
10
joerg@docker-test:~$ docker exec -it 737395b89b4a bash
root@737395b89b4a:/# ps aux
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.1 32652 5240 ? Ss 16:39 0:00 nginx: master process nginx -g daemon
off;
nginx 6 0.0 0.0 33108 2348 ? S 16:40 0:00 nginx: worker process
root 255 1.0 0.0 18128 3168 pts/0 Ss 16:51 0:00 bash
root 260 0.0 0.0 36632 2868 pts/0 R+ 16:51 0:00 ps aux
x
joerg@docker-test:~$ ps faux
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
message+ 26869 0.0 0.1 45248 3816 ? Ss 16:37 0:00 /usr/bin/containerd
root 4491 0.0 0.1 10728 5172 ? Sl 16:39 0:00 _ containerd-shim -namespace moby
-workdir /var/
root 4509 0.0 0.1 32652 5240 ? Ss 16:39 0:00 _ nginx: master process nginx -g
daemon off;
systemd+ 4541 0.0 0.0 33108 2348 ? S 16:40 0:00 _ nginx: worker process
root 2140 0.2 1.9 550876 72948 ? Ssl 16:38 0:02 /usr/bin/dockerd -H fd://
--containerd=/
joerg 4619 0.0 0.1 64844 6184 ? Ss 16:42 0:00 /lib/systemd/systemd --user
joerg 4620 0.0 0.0 84648 1684 ? S 16:42 0:00 _ (sd-pam)
Container vs VM
11
Cgroups and Namespaces
12
Implications - JRE 8
13https://jaxenter.com/nobody-puts-java-container-139373.html
Implications - JRE 8
14https://jaxenter.com/nobody-puts-java-container-139373.html
● # of JIT compiler threads
● # Garbage Collection threads
● # of thread in the common
fork-join pool
● …
© 2017 Mesosphere, Inc. All Rights Reserved.
ServiceApp ServiceServiceAppApp
OS
15
CONTAINERS
- Rapid deployment
- Dependency
vendoring
- Container image
repositories
- Spreadsheet
scheduling
OS OS
Machine
Infrastructure
Machine Machine
Container Runtime Container Runtime Container Runtime
ServiceService ServiceServiceServiceService
Container Orchestration
16
CONTAINER
SCHEDULING
RESOURCE
MANAGEMENT
SERVICE MANAGEMENT
Container Orchestration
17
CONTAINER
SCHEDULING
● Placement
● Replication/Scaling
● Resurrection
● Rescheduling
● Rolling Deployment
● Upgrades
● Downgrades
● Collocation
RESOURCE
MANAGEMENT
● Memory
● CPU
● GPU
● Volumes
● Ports
● IPs
● Images/Artifacts
SERVICE
MANAGEMENT
● Labels
● Groups/Namespaces
● Dependencies
● Load Balancing
● Readiness Checking
© 2017 Mesosphere, Inc. All Rights Reserved.
Orchestration
18
Machine Infrastructure
Web Apps & Services
Scheduling
Resource Management
Container Runtime
Machine & OS
Service Management
CONTAINER
ORCHESTRATION
Machine & OS Machine & OS
Container Runtime Container Runtime
Container Orchestration
19
CONTAINER
SCHEDULING
RESOURCE
MANAGEMENT
SERVICE MANAGEMENT
Kubernetes
20
CONTAINER
SCHEDULING
● Placement
● Replication/Scaling
● Resurrection
● Rescheduling
● Rolling Deployment
● Upgrades
● Downgrades
● Collocation
RESOURCE
MANAGEMENT
● Memory
● CPU
● GPU
● Volumes
● Ports
● IPs
● Images/Artifacts
SERVICE
MANAGEMENT
● Labels
● Groups/Namespaces
● Dependencies
● Load Balancing
● Readiness Checking
What Does “Kubernetes” Mean?
Greek for “pilot” or
“Helmsman of a ship”
Image Source
gVisor, Kata Containers, Firecracker, Docker: Who is Who in the Container Space?
Container
23
How did we end up here?
24
Container Runtimes “Secure Container
Docker
25
All-In-One Solution
● A container image format
● A method for building container images (Dockerfile/docker build)
● A way to manage container images (docker images, docker rm , etc.)
● A way to manage instances of containers (docker ps, docker rm , etc.)
● A way to share container images (docker push/pull)
● A way to run containers (docker run)
Docker Daemon
26
Kubernetes
27
Docker
rkt
28
https://github.com/rkt/rkt
CRI (Container Runtime Interface)
29
https://github.com/kubernetes/cri-api/
CRI (Container Runtime Interface)
30
https://www.slideshare.net/PhilEstes/lets-try-every-cri-runtime-available-for-kubernetes
CRI Options
31
https://www.slideshare.net/PhilEstes/lets-try-every-cri-runtime-available-for-kubernetes
gVisor, Kata Containers, Firecracker, Docker: Who is Who in the Container Space?
Container Runtimes
33https://kubernetes.io/docs/setup/production-environment/container-runtimes/
Container Runtimes
34
https://iximiuz.com/en/posts/journey-from-containerization-to-orchestration-and-beyond
OCI (Open Container Initiative)
35
https://www.opencontainers.org/
Open industry standards around container
formats and runtime
● docker run example.com/org/app:v1.0.0
● rkt run
example.com/org/app,version=v1.0.0
CRI-O
36
OCI-based implementation of CRI
https://cri-o.io/
CRI-0
37
https://cri-o.io/
runc (libcontainer)
38
https://github.com/opencontainers/runc
CLI tool for spawning and running containers
- Default (low-level) runtime
- Original Docker runtime
- OCI project
Container-d
39https://containerd.io/
Daemon managing the
complete container
lifecycle
- image transfer
- storage
- container execution
- supervision
- storage to network
attachments and
beyond.
Container-d
40https://containerd.io/
Recall: Docker Daemon
41
Podman
42https://podman.io/
Daemonless container
engine for running OCI
containers
- docker compatible
alias docker=podman
Security
43
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-5195
https://blog.paranoidsoftware.com/dirty-cow-cve-2016-5195-docker-
Container vs VM (revisited)
44
?
How did we end up here?
45
Container Runtimes “Secure Container
Kata Containers
46
Lightweight virtual machines
- KVM Hypervisor
- QEMU* VM
- Kernel Samepage Merging
- Overhead
- Disk
- Memory
- CPU
https://katacontainers.io/
Kata Containers
47
https://katacontainers.io/
Kata Containers & container-d
48
Firecracker
49
QEMU
50https://medium.com/@jain.sm/kvm-and-qemu-as-linux-hypervisor-18271376449
Firecracker
51
Minimal VM
- Alternative to QEMU
- only 5 emulated devices
virtio-net, virtio-block,
virtio-vsock, serial console,
minimal keyboard controller
- < 125 ms startup time
- < 5 MiB memory footprint.
- Needs to be specifically
compiled
Kata meets Firecracker
52
Kata meets Firecracker
53https://aws.amazon.com/blogs/opensource/kata-containers-1-5-firecracker-support/
Ignite
54
https://github.com/weaveworks/ignite
Nabla Containers
55
Reimplement OS in Userspace
● Library OS
● Unikernel
● Few native syscalls (secomp)
○ read, write, exit_group,
clock_gettime, ppoll,
pwrite64, and pread64
https://github.com/google/gvisor
Nabla Containers
56
https://nabla-containers.github.io/
GVisor
57
- User Space Kernel
- Reimplement kernel in
Golang
- Limited sycalls to actual
kernel ~ 80
- Performance impact
- Network
- Storage
- Hardware Passthrough
- GPU
https://github.com/google/gvisor
runV
58https://github.com/hyperhq/runv
Hypervisor based OCI runtime
- Ignores certain OCI spec fields
- Namespace
- Capability
- Device
- linux and mount fields
Frakti
59https://github.com/kubernetes/frakti
Comparison
60
Native Container User Space Kernel Virtual Machine
Fast, low overhead Reduced attack interface Safest
Little isolation Limited Syscalls, special build Performance & Resource
overhead
What now?
61
Container Runtime
- What does your Cloud Provider Support?
- What does your k8s support
- Mostly Standards
“Secure” Container
- What environment are you running?
- Multi-Tenant?
- User-defined input/code?
- Risk
- User-data?
- ….
What else?
62
https://github.com/container
networking/cni
https://github.com/container
-storage-interface/spec
CRD
https://kubernetes.io/docs/c
oncepts/extend-kubernetes/
api-extension/custom-resou
rces/
Thanks for listening!
63
• @arangodb
• https://www.arangodb.com/
docker pull arangodb
Test-drive Oasis
14-days for free

More Related Content

What's hot (20)

PDF
データセンターネットワークでのPrometheus活用事例
Yahoo!デベロッパーネットワーク
 
PDF
忙しい人の5分で分かるDocker 2017年春Ver
Masahito Zembutsu
 
PDF
Dockerからcontainerdへの移行
Kohei Tokunaga
 
PDF
ストリーム処理を支えるキューイングシステムの選び方
Yoshiyasu SAEKI
 
PDF
IPv6 を始めてみた
miki koganei
 
PPTX
シェル・ワンライナー160本ノック
Ryuichi Ueda
 
PDF
YOW2018 Cloud Performance Root Cause Analysis at Netflix
Brendan Gregg
 
PPTX
Apache Hadoopに見るJavaミドルウェアのcompatibility(Open Developers Conference 2020 Onli...
NTT DATA Technology & Innovation
 
PDF
試して覚えるPacemaker入門 『リソース設定編』
健太 松浦
 
PPTX
Apache Spark on Kubernetes入門(Open Source Conference 2021 Online Hiroshima 発表資料)
NTT DATA Technology & Innovation
 
PDF
アーキテクチャから理解するPostgreSQLのレプリケーション
Masahiko Sawada
 
PDF
P2P Container Image Distribution on IPFS With containerd and nerdctl
Kohei Tokunaga
 
PDF
PGOを用いたPostgreSQL on Kubernetes入門(Open Source Conference 2023 Online/Hokkaido...
NTT DATA Technology & Innovation
 
PDF
Flux Beyond Git Harnessing the Power of OCI
CezzaineZaher1
 
PDF
DevOps Days Kyiv 2019 -- Victoria Metrics // Artem Navoiev
Mykola Marzhan
 
PDF
Apache OpenWhiskで実現するプライベートFaaS環境 #tjdev
Yahoo!デベロッパーネットワーク
 
PDF
Red Hat OpenShift Container Storage
Takuya Utsunomiya
 
PPTX
AKS と ACI を組み合わせて使ってみた
Hideaki Aoyagi
 
PDF
実環境にTerraform導入したら驚いた
Akihiro Kuwano
 
PDF
Starting up Containers Super Fast With Lazy Pulling of Images
Kohei Tokunaga
 
データセンターネットワークでのPrometheus活用事例
Yahoo!デベロッパーネットワーク
 
忙しい人の5分で分かるDocker 2017年春Ver
Masahito Zembutsu
 
Dockerからcontainerdへの移行
Kohei Tokunaga
 
ストリーム処理を支えるキューイングシステムの選び方
Yoshiyasu SAEKI
 
IPv6 を始めてみた
miki koganei
 
シェル・ワンライナー160本ノック
Ryuichi Ueda
 
YOW2018 Cloud Performance Root Cause Analysis at Netflix
Brendan Gregg
 
Apache Hadoopに見るJavaミドルウェアのcompatibility(Open Developers Conference 2020 Onli...
NTT DATA Technology & Innovation
 
試して覚えるPacemaker入門 『リソース設定編』
健太 松浦
 
Apache Spark on Kubernetes入門(Open Source Conference 2021 Online Hiroshima 発表資料)
NTT DATA Technology & Innovation
 
アーキテクチャから理解するPostgreSQLのレプリケーション
Masahiko Sawada
 
P2P Container Image Distribution on IPFS With containerd and nerdctl
Kohei Tokunaga
 
PGOを用いたPostgreSQL on Kubernetes入門(Open Source Conference 2023 Online/Hokkaido...
NTT DATA Technology & Innovation
 
Flux Beyond Git Harnessing the Power of OCI
CezzaineZaher1
 
DevOps Days Kyiv 2019 -- Victoria Metrics // Artem Navoiev
Mykola Marzhan
 
Apache OpenWhiskで実現するプライベートFaaS環境 #tjdev
Yahoo!デベロッパーネットワーク
 
Red Hat OpenShift Container Storage
Takuya Utsunomiya
 
AKS と ACI を組み合わせて使ってみた
Hideaki Aoyagi
 
実環境にTerraform導入したら驚いた
Akihiro Kuwano
 
Starting up Containers Super Fast With Lazy Pulling of Images
Kohei Tokunaga
 

Similar to gVisor, Kata Containers, Firecracker, Docker: Who is Who in the Container Space? (20)

PDF
Containers - Portable, repeatable user-oriented application delivery. Build, ...
Walid Shaari
 
PDF
Docker meetup-20-apr-17-openshit
Yusuf Hadiwinata Sutandar
 
PPTX
containerd the universal container runtime
Docker, Inc.
 
PDF
Coscup2018 itri android-in-cloud
Tian-Jian Wu
 
PDF
The internals and the latest trends of container runtimes
Akihiro Suda
 
PDF
Using VPP and SRIO-V with Clear Containers
Michelle Holley
 
PDF
Security of Linux containers in the cloud
Dobrica Pavlinušić
 
PDF
GDG Cloud Iasi - Docker For The Busy Developer.pdf
athlonica
 
PDF
Ippevent : openshift Introduction
kanedafromparis
 
PDF
State of ARM-based HPC
inside-BigData.com
 
PPTX
Why you’re going to fail running java on docker!
Red Hat Developers
 
PDF
Real-World Docker: 10 Things We've Learned
RightScale
 
PDF
IAU workshop 2018 day one
Walid Shaari
 
PDF
Lightweight Virtualization with Linux Containers and Docker | YaC 2013
dotCloud
 
PDF
Lightweight Virtualization with Linux Containers and Docker I YaC 2013
Docker, Inc.
 
PDF
[KubeCon EU 2020] containerd Deep Dive
Akihiro Suda
 
PDF
Using Docker Platform to Provide Services
GLC Networks
 
PDF
DevEx | there’s no place like k3s
Haggai Philip Zagury
 
PDF
OSDC 2016 | rkt and Kubernetes: What’s new with Container Runtimes and Orches...
NETWAYS
 
PDF
OSDC 2016 - rkt and Kubernentes what's new with Container Runtimes and Orches...
NETWAYS
 
Containers - Portable, repeatable user-oriented application delivery. Build, ...
Walid Shaari
 
Docker meetup-20-apr-17-openshit
Yusuf Hadiwinata Sutandar
 
containerd the universal container runtime
Docker, Inc.
 
Coscup2018 itri android-in-cloud
Tian-Jian Wu
 
The internals and the latest trends of container runtimes
Akihiro Suda
 
Using VPP and SRIO-V with Clear Containers
Michelle Holley
 
Security of Linux containers in the cloud
Dobrica Pavlinušić
 
GDG Cloud Iasi - Docker For The Busy Developer.pdf
athlonica
 
Ippevent : openshift Introduction
kanedafromparis
 
State of ARM-based HPC
inside-BigData.com
 
Why you’re going to fail running java on docker!
Red Hat Developers
 
Real-World Docker: 10 Things We've Learned
RightScale
 
IAU workshop 2018 day one
Walid Shaari
 
Lightweight Virtualization with Linux Containers and Docker | YaC 2013
dotCloud
 
Lightweight Virtualization with Linux Containers and Docker I YaC 2013
Docker, Inc.
 
[KubeCon EU 2020] containerd Deep Dive
Akihiro Suda
 
Using Docker Platform to Provide Services
GLC Networks
 
DevEx | there’s no place like k3s
Haggai Philip Zagury
 
OSDC 2016 | rkt and Kubernetes: What’s new with Container Runtimes and Orches...
NETWAYS
 
OSDC 2016 - rkt and Kubernentes what's new with Container Runtimes and Orches...
NETWAYS
 
Ad

More from ArangoDB Database (20)

PPTX
ATO 2022 - Machine Learning + Graph Databases for Better Recommendations (3)....
ArangoDB Database
 
PPTX
Machine Learning + Graph Databases for Better Recommendations V2 08/20/2022
ArangoDB Database
 
PPTX
Machine Learning + Graph Databases for Better Recommendations V1 08/06/2022
ArangoDB Database
 
PPTX
ArangoDB 3.9 - Further Powering Graphs at Scale
ArangoDB Database
 
PDF
GraphSage vs Pinsage #InsideArangoDB
ArangoDB Database
 
PDF
Webinar: ArangoDB 3.8 Preview - Analytics at Scale
ArangoDB Database
 
PDF
Graph Analytics with ArangoDB
ArangoDB Database
 
PDF
Getting Started with ArangoDB Oasis
ArangoDB Database
 
PDF
Custom Pregel Algorithms in ArangoDB
ArangoDB Database
 
PPTX
Hacktoberfest 2020 - Intro to Knowledge Graphs
ArangoDB Database
 
PDF
A Graph Database That Scales - ArangoDB 3.7 Release Webinar
ArangoDB Database
 
PDF
ArangoML Pipeline Cloud - Managed Machine Learning Metadata
ArangoDB Database
 
PDF
ArangoDB 3.7 Roadmap: Performance at Scale
ArangoDB Database
 
PDF
Webinar: What to expect from ArangoDB Oasis
ArangoDB Database
 
PDF
ArangoDB 3.5 Feature Overview Webinar - Sept 12, 2019
ArangoDB Database
 
PDF
3.5 webinar
ArangoDB Database
 
PDF
Webinar: How native multi model works in ArangoDB
ArangoDB Database
 
PDF
An introduction to multi-model databases
ArangoDB Database
 
PDF
Running complex data queries in a distributed system
ArangoDB Database
 
PDF
Guacamole Fiesta: What do avocados and databases have in common?
ArangoDB Database
 
ATO 2022 - Machine Learning + Graph Databases for Better Recommendations (3)....
ArangoDB Database
 
Machine Learning + Graph Databases for Better Recommendations V2 08/20/2022
ArangoDB Database
 
Machine Learning + Graph Databases for Better Recommendations V1 08/06/2022
ArangoDB Database
 
ArangoDB 3.9 - Further Powering Graphs at Scale
ArangoDB Database
 
GraphSage vs Pinsage #InsideArangoDB
ArangoDB Database
 
Webinar: ArangoDB 3.8 Preview - Analytics at Scale
ArangoDB Database
 
Graph Analytics with ArangoDB
ArangoDB Database
 
Getting Started with ArangoDB Oasis
ArangoDB Database
 
Custom Pregel Algorithms in ArangoDB
ArangoDB Database
 
Hacktoberfest 2020 - Intro to Knowledge Graphs
ArangoDB Database
 
A Graph Database That Scales - ArangoDB 3.7 Release Webinar
ArangoDB Database
 
ArangoML Pipeline Cloud - Managed Machine Learning Metadata
ArangoDB Database
 
ArangoDB 3.7 Roadmap: Performance at Scale
ArangoDB Database
 
Webinar: What to expect from ArangoDB Oasis
ArangoDB Database
 
ArangoDB 3.5 Feature Overview Webinar - Sept 12, 2019
ArangoDB Database
 
3.5 webinar
ArangoDB Database
 
Webinar: How native multi model works in ArangoDB
ArangoDB Database
 
An introduction to multi-model databases
ArangoDB Database
 
Running complex data queries in a distributed system
ArangoDB Database
 
Guacamole Fiesta: What do avocados and databases have in common?
ArangoDB Database
 
Ad

Recently uploaded (20)

PPTX
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
PDF
Unlock Efficiency with Insurance Policy Administration Systems
Insurance Tech Services
 
PDF
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
PDF
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
PDF
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
PPTX
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PDF
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 
PDF
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
PDF
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
PDF
Linux Certificate of Completion - LabEx Certificate
VICTOR MAESTRE RAMIREZ
 
PPTX
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
PDF
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
PDF
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
PDF
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
PDF
The 5 Reasons for IT Maintenance - Arna Softech
Arna Softech
 
PDF
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
PDF
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
PPTX
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
PDF
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
PDF
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
Unlock Efficiency with Insurance Policy Administration Systems
Insurance Tech Services
 
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
Linux Certificate of Completion - LabEx Certificate
VICTOR MAESTRE RAMIREZ
 
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
The 5 Reasons for IT Maintenance - Arna Softech
Arna Softech
 
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 

gVisor, Kata Containers, Firecracker, Docker: Who is Who in the Container Space?