You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Key insight**: Firecracker hypervisor overhead is just 78ms (faster than Docker). The 1015ms "ready" time includes full kernel boot + userspace init + guest agent startup. Once running, Firecracker has 3x lower exec latency.
11
14
12
15
## Docker Backend (macOS)
13
16
@@ -66,25 +69,44 @@ The ~175ms start time is the practical floor for Docker. Remaining overhead come
66
69
67
70
## Firecracker Backend (Linux)
68
71
69
-
Firecracker microVMs provide significantly faster boot times by eliminating container orchestration overhead.
72
+
Firecracker microVMs provide stronger isolation (separate kernel per VM) and lower exec latency via vsock.
73
+
74
+
### Measured Performance (AMD EPYC, KVM)
75
+
76
+
| Metric | Measured | Notes |
77
+
|--------|----------|-------|
78
+
| Firecracker API ready | 46ms | Process start to socket available |
79
+
| Instance start | 78ms | VM started (hypervisor overhead only) |
0 commit comments