Russell Pavlicek had a pretty good high level talk on Unikernels at Linuxfest Northwest this year - http://linuxfestnorthwest.org/2015/sessions/next-generation-...
Look Ma, no OS
31–40 of 91 posts
Re: Look Ma, no OS
#32Russell Pavlicek had a pretty good high level talk on Unikernels at Linuxfest Northwest this year - http://linuxfestnorthwest.org/2015/sessions/next-generation-...
Excellent abstract, but unable to view slides on a Mac. (ODP format not supported by keynote?)
Edit: you should be able to import it into your google drive, and view it there if you do not wish to install libreoffice.
Re: Look Ma, no OS
#33I have to say, this is one of the most exciting technologies I've seen in awhile. It predates docker by a fair bit, and I would have hoped it would have gotten more traction. So I'm very happy to see slides from a user group. Alas, the brilliance of Erlang has not been sufficiently appreciated, so hopefully Elixir -- aka: Erlang Returns -- might catch on and become a popular hipster language. With Docker you still ha…
> and then on top of that more and more infrastructure is being built. I don't see how unikernels solve orchestration. You still need databases, load balancing, service discovery and so on. Kubernetes or something like it would still be a necessity.
Re: Look Ma, no OS
#34Re: Look Ma, no OS
#35The next logical step is to elide the virtualized network and disk interfaces, and then we're back to shared hosting! See you again in twenty years.
Maybe it is overly simplified, but as i understand it we are looking at a "kernel" stripped down to handling the disk and network interfaces provided by the VM. No user separation (there is only a single "user"), no memory protection (it is only running a single process as best i can tell), and resource provisioning is done by the VM.
Re: Look Ma, no OS
#36Re: Look Ma, no OS
#37Re: Look Ma, no OS
#38I have to say, this is one of the most exciting technologies I've seen in awhile. It predates docker by a fair bit, and I would have hoped it would have gotten more traction. So I'm very happy to see slides from a user group. Alas, the brilliance of Erlang has not been sufficiently appreciated, so hopefully Elixir -- aka: Erlang Returns -- might catch on and become a popular hipster language. With Docker you still ha…
You have an app whose bottleneck is the underlying OS? Or you just don't know how to UNIX sysop? Kubernetes sounds like the ticket for you if you're using Docker.
Re: Look Ma, no OS
#39Is it me or is the wrong word being used (0.o)? See -- http://en.wikipedia.org/wiki/Microkernel
Re: Look Ma, no OS
#40I'm not sure Erlang with a immutable infrastructure concept is good idea. Dynamic code reloading and upgrading without downtime is a key feature of Erlang, and immutable infrastructure do not play well with these features. If you make Erlang immutable, you should add another layer to ensure availability like HAProxy, which adds management burden. If you use dynamic code reloading, it is no longer 'immutable'.