All Projects → SESA → Ebbrt

SESA / Ebbrt

Licence: bsl-1.0
EbbRT: elastic building block runtime

Programming Languages

c
50402 projects - #5 most used programming language

Labels

Projects that are alternatives of or similar to Ebbrt

uniprof
A stack tracer/profiler for Xen domains
Stars: ✭ 29 (-50.85%)
Mutual labels:  unikernel
awesome-microvm
🎉 A curated list of awesome things related to Micro-VMs
Stars: ✭ 22 (-62.71%)
Mutual labels:  unikernel
Ops
ops - build and run nanos unikernels
Stars: ✭ 552 (+835.59%)
Mutual labels:  unikernel
ops-examples
A repository of basic and advanced examples using Ops
Stars: ✭ 68 (+15.25%)
Mutual labels:  unikernel
clickos
The Click modular router: fast modular packet processing and analysis
Stars: ✭ 127 (+115.25%)
Mutual labels:  unikernel
Rusty Hermit
RustyHermit - A Rust-based, lightweight unikernel
Stars: ✭ 268 (+354.24%)
Mutual labels:  unikernel
awesome-unikernels
A list about Unikernels
Stars: ✭ 86 (+45.76%)
Mutual labels:  unikernel
Rebar3 osv
Turn an Erlang/OTP application into a Unikernel image
Stars: ✭ 34 (-42.37%)
Mutual labels:  unikernel
docteur
An opiniated file-system for MirageOS
Stars: ✭ 16 (-72.88%)
Mutual labels:  unikernel
Includeos
A minimal, resource efficient unikernel for cloud services
Stars: ✭ 4,516 (+7554.24%)
Mutual labels:  unikernel
nautilus
Nautilus Aerokernel
Stars: ✭ 30 (-49.15%)
Mutual labels:  unikernel
arp
Address resolution protocol (ARP) implementation in OCaml targeting MirageOS
Stars: ✭ 20 (-66.1%)
Mutual labels:  unikernel
Mirage Tcpip
TCP/IP networking stack in pure OCaml, using the Mirage platform libraries. Includes IPv4/6, ICMP, and UDP/TCP support.
Stars: ✭ 277 (+369.49%)
Mutual labels:  unikernel
ocaml-dns
OCaml implementation of the DNS protocol
Stars: ✭ 93 (+57.63%)
Mutual labels:  unikernel
Nanos
A kernel designed to run one and only one application in a virtualized environment
Stars: ✭ 557 (+844.07%)
Mutual labels:  unikernel
rekernel
A minimal setup for writing Unikernels in ReasonML
Stars: ✭ 28 (-52.54%)
Mutual labels:  unikernel
torokernel
This repository contains the source code of the unikernel toro
Stars: ✭ 107 (+81.36%)
Mutual labels:  unikernel
Unipi
Serving content from a git repository via HTTPS (including let's encrypt provisioning) as MirageOS unikernel
Stars: ✭ 46 (-22.03%)
Mutual labels:  unikernel
Solo5
A sandboxed execution environment for unikernels
Stars: ✭ 659 (+1016.95%)
Mutual labels:  unikernel
Hermitux
A binary-compatible unikernel
Stars: ✭ 354 (+500%)
Mutual labels:  unikernel

The Elastic Building Block Runtime (EbbRT)

This is a research project out of the Boston University Computer Science Department

Computers used to be large, expensive and centrally owned. Operating systems were designed to multiplex hardware across multiple applications and users. Presently, Cloud Computing allows users to rent entire virtual machines to run their own OS and applications. In this context, the hypervisor multiplexes hardware across multiple applications and users. We can build more efficient software by constructing custom, application-specific operating systems rather than deploying general purpose operating systems within virtual machines.

image

Design

EbbRT is designed first and foremost for performance and maintainability. A high performance system that cannot be maintained will soon fall behind. This is one of the primary pitfalls of customized systems. EbbRT adopts several techniques in order to achieve this:

  • EbbRT is comprised of a set of components that developers can extend, replace or discard in order to construct and deploy a particular application. This enables a much greater degree of customization than existing general purpose systems while promoting the reuse of non-performance-critical components

  • EbbRT components run in a light-weight event-driven environment. This reduces the runtime complexity yet provides enough flexibility for a wide range of applications.

  • EbbRT library operating systems can run within virtual machines on unmodified hypervisors. This allows us to deploy EbbRT applications on commodity clouds.

  • EbbRT library operating systems run alongside general purpose operating systems. This allows functionality to be offloaded for compatibility, reducing the maintenance burden by avoiding the construction of new software.

  • EbbRT uses many modern and high-level programming techniques not typically found in operating systems software. This was chosen deliberately to reduce the complexity of the software.

Detail

EbbRT is comprised of a set of an x86_64 library OS and toolchain as well as a Linux userspace library. Both runtimes are written predominately in C++11. The native library OS is deployed along with a modified GNU toolchain (gcc, binutils, libstdc++) and newlib (libc) that provide an x86_64-ebbrt target. Application code targeting the native library OS is compiled with this toolchain and the resulting binary is a bootable ELF linked with the library OS. We provide C and C++ standard library implementations which make it straightforward to use many third party software libraries.

Further Reading

EbbRT: A Framework for Building Per-Application Library Operating Systems. 12th USENIX Symposium on Operating Systems Design and Implementation (OSDI 16). (PDF)

Contact

Please email us at [email protected]

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].