immutable distributed infrastructure for unikernels
play

Immutable Distributed Infrastructure for Unikernels WG2.8, Greece - PowerPoint PPT Presentation

Immutable Distributed Infrastructure for Unikernels WG2.8, Greece Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas Gazagnaire University of Cambridge Computer Laboratory May 26, 2015 Anil Madhavapeddy (speaker) with Benjamin


  1. Immutable Distributed Infrastructure for Unikernels WG2.8, Greece Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas Gazagnaire University of Cambridge Computer Laboratory May 26, 2015 Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 1 / 28

  2. � Background ◮ Unikernels ◮ Irmin, a large-scale, immutable, branch-consistent storage � Weakly consistent data structures ◮ Mergeable queues ◮ Mergeable ropes � Benchmarking Irmin � Use Cases Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 2 / 28

  3. Background Unikernels • Modern systems are built in memory-safe programming languages . • We build elaborate libraries and applications to express complex logic. • ...and watch it all come crashing down when it interfaces with the OS. Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 3 / 28

  4. Background Unikernels Mirage OS is a library operating system that constructs unikernels for secure, high-performance network applications across a variety of cloud computing and mobile platforms. Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 4 / 28

  5. Background Unikernels Mirage OS is a library operating system that constructs unikernels for secure, high-performance network applications across a variety of cloud computing and mobile platforms. Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 4 / 28

  6. Background Unikernels Mirage OS is a library operating system that constructs unikernels for secure, high-performance network applications across a variety of cloud computing and mobile platforms. Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 4 / 28

  7. Background Unikernels Unikernel compiler Configuration Files application source code Application Binary configuration files hardware architecture Language Runtime whole-system optimisation Parallel Threads } Application Code User Processes specialised unikernel Language Runtime OS Kernel Hypervisor Hypervisor Hardware Hardware Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 5 / 28

  8. Background Unikernels What should a storage interface to unikernels look like? • Highly distributed systems • Frequent failure is an option • Debugging and tracing must be built into the fabric Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 6 / 28

  9. Background Irmin, a large-scale, immutable, branch-consistent storage Irmin, large-scale, immutable, branch-consistent storage • Irmin is a library to persist and synchronize distributed data structures both on-disk and in-memory • It enables a style of programming very similar to the Git workflow , where distributed nodes fork, fetch, merge and push data between each other • The general idea is that you want every active node to get a local (partial) copy of a global database and always be very explicit about how and when data is shared and migrated Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 7 / 28

  10. Background Irmin, a large-scale, immutable, branch-consistent storage Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 8 / 28

  11. Background Irmin, a large-scale, immutable, branch-consistent storage type t = ... (** User -defined contents. *) old type result = [ ‘Ok of t | ‘Conflict of string ] val merge: old:t t t → → → x y result (** 3-way merge functions. *) ? Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 9 / 28

  12. Weakly consistent data structures Weakly consistent data structures Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 10 / 28

  13. Weakly consistent data structures Mergeable queues Mergeable queues Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 11 / 28

  14. Weakly consistent data structures Mergeable queues module type IrminQueue.S = sig type t type elt val create : unit t → val length : t int → val is_empty : t bool → val push : t elt t → → val pop : t (elt * t) → val peek : t (elt * t) → val merge : IrminMerge.t end Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 12 / 28

  15. Weakly consistent data structures Mergeable queues Index bottom Node I0 top n07 Elt pop list push list n01 I1 top n02 n06 b o t t o m n03 n05 n11 n04 n12 n14 n13 Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 13 / 28

  16. Weakly consistent data structures Mergeable queues I old I 1 A I 2 B D G A E C F B D B D C C I 1 I 2 E B D F I 1 C G I 2 E B D F C G Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 14 / 28

  17. Weakly consistent data structures Mergeable queues Current state Operation Read Write Push 0 2 O ( 1 ) Pop 2 on average 1 on average O ( 1 ) Merge n 1 O ( n ) Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 15 / 28

  18. Weakly consistent data structures Mergeable queues Current state Operation Read Write Push 0 2 O ( 1 ) Pop 2 on average 1 on average O ( 1 ) Merge n 1 O ( n ) With a little more work Operation Read Write Push 0 2 O ( 1 ) Pop 2 on average 1 on average O ( 1 ) Merge log n 1 O ( log n ) Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 15 / 28

  19. Weakly consistent data structures Mergeable ropes Mergeable ropes Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 16 / 28

  20. Weakly consistent data structures Mergeable ropes module type IrminRope.S = sig type t type value (* e.g char *) type cont (* e.g string *) val create : unit t → val make : cont t → ... val set : t int value t → → → val get : t int value → → val insert : t int cont t → → → val delete : t int int t → → → val append : t t t → → val split : t int (t * t) → → val merge : IrminMerge.t end Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 17 / 28

  21. Weakly consistent data structures Mergeable ropes Operation Rope String Set/Get O ( log n ) O ( 1 ) Split O ( log n ) O ( 1 ) Concatenate O ( log n ) O ( n ) Insert O ( log n ) O ( n ) Delete O ( log n ) O ( n ) Merge log ( f ( n )) f ( n ) Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 18 / 28

  22. Weakly consistent data structures Mergeable ropes 10 5 2 2 2 do 1 rem ip sum a lo met 10 10 5 5 5 2 2 2 2 1 2 2 do 4 rem ip sum a rem ip sum lo do lor met lo 3 met a sit rem ip sum lo do lor met a sit Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 19 / 28

  23. Weakly consistent data structures Mergeable ropes 10 5 2 2 2 do 1 rem ip sum a lo met 10 10 5 5 5 2 2 2 2 1 2 2 do 4 rem ip sum a rem ip sum lo do lor met lo 3 met a sit rem ip sum lo do lor met a sit Anil Madhavapeddy (speaker) with Benjamin Farinier and Thomas GazagnaireUniversity of Cambridge Computer Laboratory Immutable Distributed Infrastructure for Unikernels 19 / 28

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend