Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Firecracker | 21,693 | 8 hours ago | 150 | apache-2.0 | Rust | |||||
Secure and fast microVMs for serverless computing. | ||||||||||
Wasm3 | 6,105 | 4 days ago | 1 | March 03, 2021 | 62 | mit | C | |||
🚀 A fast WebAssembly interpreter and the most universal WASM runtime | ||||||||||
Serverless Wasm | 146 | 5 years ago | 14 | mit | Rust | |||||
Myblog | 132 | 3 months ago | 9 | mit | JavaScript | |||||
我的历程 | ||||||||||
Vcenter Connector | 23 | 3 years ago | January 11, 2019 | n,ull | mit | Go | ||||
Extend vCenter with OpenFaaS | ||||||||||
Devops For Serverless Applications | 11 | 4 months ago | mit | HTML | ||||||
DevOps for Serverless Applications, published by Packt | ||||||||||
Sleeping Beauty | 4 | 4 years ago | apache-2.0 | Shell | ||||||
A system to listen for incoming TCP connections and starting servers to serve them, on demand | ||||||||||
Cloud Developer Basics | 4 | 3 years ago | 10 | JavaScript | ||||||
Go from zero to Google Cloud Platform hero. Learn the basics of VMs, networking, containers, serverless, storage etc. through both practical workshops and a bit of theory. |
Our mission is to enable secure, multi-tenant, minimal-overhead execution of container and function workloads.
Read more about the Firecracker Charter here.
Firecracker is an open source virtualization technology that is purpose-built for creating and managing secure, multi-tenant container and function-based services that provide serverless operational models. Firecracker runs workloads in lightweight virtual machines, called microVMs, which combine the security and isolation properties provided by hardware virtualization technology with the speed and flexibility of containers.
The main component of Firecracker is a virtual machine monitor (VMM) that uses the Linux Kernel Virtual Machine (KVM) to create and run microVMs. Firecracker has a minimalist design. It excludes unnecessary devices and guest-facing functionality to reduce the memory footprint and attack surface area of each microVM. This improves security, decreases the startup time, and increases hardware utilization. Firecracker has also been integrated in container runtimes, for example Kata Containers and Weaveworks Ignite.
Firecracker was developed at Amazon Web Services to accelerate the speed and efficiency of services like AWS Lambda and AWS Fargate. Firecracker is open sourced under Apache version 2.0.
To read more about Firecracker, check out firecracker-microvm.io.
To get started with Firecracker, download the latest release binaries or build it from source.
You can build Firecracker on any Unix/Linux system that has Docker running
(we use a development container) and bash
installed, as follows:
git clone https://github.com/firecracker-microvm/firecracker
cd firecracker
tools/devtool build
toolchain="$(uname -m)-unknown-linux-musl"
The Firecracker binary will be placed at
build/cargo_target/${toolchain}/debug/firecracker
. For more information on
building, testing, and running Firecracker, go to the
quickstart guide.
The overall security of Firecracker microVMs, including the ability to meet the criteria for safe multi-tenant computing, depends on a well configured Linux host operating system. A configuration that we believe meets this bar is included in the production host setup document.
Firecracker is already running production workloads within AWS, but it's still Day 1 on the journey guided by our mission. There's a lot more to build and we welcome all contributions.
To contribute to Firecracker, check out the development setup section in the getting started guide and then the Firecracker contribution guidelines.
New Firecracker versions are released via the GitHub repository releases page, typically every two or three months. A history of changes is recorded in our changelog.
The Firecracker release policy is detailed here.
Firecracker's overall architecture is described in the design document.
Firecracker consists of a single micro Virtual Machine Manager process that exposes an API endpoint to the host once started. The API is specified in OpenAPI format. Read more about it in the API docs.
The API endpoint can be used to:
[BETA]
Configure the data tree of the guest-facing metadata service. The
service is only available to the guest if this resource is configured.Built-in Capabilities:
We continuously test Firecracker on machines with the following CPUs micro-architectures: Intel Skylake, Intel Cascade Lake, Intel Ice Lake, AMD Zen 3, ARM64 Neoverse N1 and ARM64 Neoverse V1.
Firecracker is generally available on Intel x86_64, AMD x86_64 and ARM64 CPUs (starting from release v0.24) that offer hardware virtualization support, and that are released starting with 2015. All production use cases should follow these production host setup instructions.
Firecracker may work on other x86 and Arm 64-bit CPUs with support for hardware virtualization, but any such platform is currently not supported and not fit for production. If you want to run Firecracker on such platforms, please open a feature request.
Firecracker currently only supports little-endian platforms. Firecracker will not compile for big-endian architectures, and will not work correctly with big-endian configured guests.
For a list of supported host/guest kernels and future kernel related plans, check out our kernel support policy.
MSR_IA32_TSX_CTRL
MSR
value will not be preserved after restoring from a snapshot.pl031
RTC device on aarch64 does not support interrupts, so guest
programs which use an RTC alarm (e.g. hwclock
) will not work.Firecracker's performance characteristics are listed as part of the specification documentation. All specifications are a part of our commitment to supporting container and function workloads in serverless operational models, and are therefore enforced via continuous integration testing.
The security of Firecracker is our top priority. If you suspect you have uncovered a vulnerability, contact us privately, as outlined in our security policy document; we will immediately prioritize your disclosure.
Frequently asked questions are collected in our FAQ doc.
You can get in touch with the Firecracker community in the following ways:
When communicating within the Firecracker community, please mind our code of conduct.