Building a container from scratch in Go - Liz Rice (Microscaling Systems)

Поделиться
HTML-код
  • Опубликовано: 12 окт 2016
  • Everyone has heard of Docker, but what is a container? Is it really "a lightweight VM"? In this talk we'll dispel the magic by writing a container in about 100 lines of Go.
    Liz Rice has a wealth of software development, team, and product management experience from her years working on network protocols and distributed systems as well as in digital technology sectors including VOD, music, and VoIP. When not building startups and writing code, Liz loves riding bikes in places with better weather than her native London.
  • НаукаНаука

Комментарии • 101

  • @shahmiBro1
    @shahmiBro1 4 года назад +16

    Loving demos cause it shows the real things in practical world, always intrigued to watch her demos;

  • @afortiorama
    @afortiorama 5 лет назад +15

    This was an excellent presentation, thanks!

  • @mattt2684
    @mattt2684 5 лет назад +23

    I loved this talk!

  • @artvandelay777
    @artvandelay777 6 лет назад +116

    I finally think I understand what a Docker container is! Thanks.

    • @sussus4914
      @sussus4914 2 года назад +5

      Her 50 lines of GO lang code hides over a 100 levels of OS level abstraction, and you confidently say that you think you understand what a Docker container is. That's laughable.

    • @safiahmed7955
      @safiahmed7955 Год назад +5

      @@sussus4914 so why don’t you give a talk on those 100 lines of OS abstraction?

    • @milanpanic3755
      @milanpanic3755 2 месяца назад

      @@sussus4914precisely why they are abstractions, so you don’t get distracted with boilerplate

  • @gangsterholla179
    @gangsterholla179 2 года назад +7

    This was amazing. Simple and easy to digest, but packed with information.

  • @johnschiwitz4412
    @johnschiwitz4412 4 года назад +16

    one of the best container talk i've heard

  • @jonbv2434
    @jonbv2434 3 года назад +6

    this is by far very short and well explained how the container can expand the possibilities how GO can do it.

  • @billvvoods
    @billvvoods 2 года назад

    Awesome video and a great intro to how containers are constructed

  • @HassanSani
    @HassanSani 5 лет назад +35

    Wow the way you make things feel simple, now I'm even a go pro developer

  • @RichardBuckerCodes
    @RichardBuckerCodes 3 года назад +5

    The best part of this demo is that it makes containers more like jail and addresses the trust issue.

  • @iknownothing13
    @iknownothing13 6 лет назад +3

    That's very inspiring, especially Liz shows her charm by unique humor and coding flow.

  • @mahdijh1
    @mahdijh1 3 года назад +2

    Thanks, It was the best way someone can show me concept of a container.

  • @abhinjose
    @abhinjose 5 лет назад +2

    Thanks, That was cool and easy to understand!

  • @loupax
    @loupax Год назад +1

    Looks like my favorite presentations are those that start so simple you almost think they are jokes, until suddenly they are not.

  • @abstractplanet6018
    @abstractplanet6018 2 года назад +2

    Made me want to learn Go. Thanks.

  • @gscacco
    @gscacco 5 лет назад +1

    Great work !

  • @xinli4938
    @xinli4938 6 лет назад +2

    Great Demo!

  • @jasonguo7596
    @jasonguo7596 4 года назад +2

    This is awesome!

  • @reprC
    @reprC 4 года назад +1

    Awesome stuff. Any reason that calling /proc/self/exe was done rather than syscall.ForkExec? She mentioned that it does the same thing. Just because the copy-paste portion is faster for the demo? Minimizing the Go-specific parts since ForkExec is a convenience method and takes a Go struct? Not criticizing, just curious

  • @freakybaby1012
    @freakybaby1012 3 года назад +2

    Great tutorial thank you!

  •  6 лет назад +2

    Great impressive Demo

  • @ahmedifhaam7266
    @ahmedifhaam7266 2 года назад

    great explanation. Thank you 👍

  • @rohitm8526
    @rohitm8526 Год назад

    Woah... very nice explanation 🔥

  • @abhirishi6200
    @abhirishi6200 5 лет назад

    excellent video

  • @johnschiwitz4412
    @johnschiwitz4412 4 года назад +1

    hope to see you at kubecon nice video

  • @izzzzzzza
    @izzzzzzza 6 лет назад

    awesome, thanks!

  • @dengan699
    @dengan699 5 лет назад +1

    very good, thanks

  • @hamed775
    @hamed775 6 лет назад

    ............Excellent .................

  • @mithleshmeghwal7093
    @mithleshmeghwal7093 5 лет назад

    awesome lizrice

  • @actsrv9
    @actsrv9 4 года назад +1

    All big words should be explained like this.

  • @anshubehera2600
    @anshubehera2600 3 года назад

    "You are my peer reviewers"... what a lass

  • @evilsdexter5261
    @evilsdexter5261 5 лет назад +6

    why can't I give 1000 likes to this one? :)

  • @sunwoojang6888
    @sunwoojang6888 3 года назад +1

    really good

  • @liuyanjun6693
    @liuyanjun6693 6 лет назад

    very impressive demo

  • @techindia3602
    @techindia3602 3 года назад +1

    Does anyone have the link to the talk by Julian Friedman she is talking about ?

  • @KeithMakank3
    @KeithMakank3 2 года назад

    Really good talk

  • @RockwellAIM65
    @RockwellAIM65 Год назад

    Where is the network stack+virtualization for that? How does that work?

  • @KevinCantwell
    @KevinCantwell 7 лет назад +21

    This is a fantastic presentation, thank you! I notice that you quickly gloss over installing a root file system ("I just happen to have one lying around"). I'm not familiar with installing linux file systems and my attempts at doing so are apparently too naive to work. Is there a straightforward way to download or copy one?

    • @cyphaetus
      @cyphaetus 7 лет назад +6

      For ubuntu:
      apt-get install lxc
      sudo lxc-create -t ubuntu -n yakkety
      # now use this for the chroot /var/cache/lxc/yakkety/rootfs-amd64
      # I still had to `run mount -t proc proc /proc` to get ps to work though, not sure how to get around that

    • @theoutsider01
      @theoutsider01 7 лет назад +1

      I could do this by creating a chroot filesystem. help.ubuntu.com/community/BasicChroot

    • @deepspaceninefreak
      @deepspaceninefreak 6 лет назад +2

      debootstrap stretch test1

  • @chiragsingla.
    @chiragsingla. 2 года назад

    Thanks

  • @codelucky
    @codelucky 3 года назад +2

    Did I just watch Go programing in Downtown Abbey?

  • @MoAliDevOps
    @MoAliDevOps 7 лет назад +18

    The talk really begins at 2:25
    You're welcome.

  • @generosonunezarias369
    @generosonunezarias369 4 года назад

    Badass!

  • @metaorior
    @metaorior 5 лет назад

    good afterneen

  • @derekreed6798
    @derekreed6798 Год назад

    Nice

  • @joepoptiya
    @joepoptiya 2 года назад

    Really good walk through.
    The container doesn't have internet access. Is there a way to provide the container with internet access?

  • @piyushsingh178
    @piyushsingh178 2 года назад

    wow..this is super awesome!! ps not showing host processes was very nice. But why Go though. As someone who doesnt speak Go, what I understood was you did some syscalls, cloned UTS namespace, changed rootdir, and invoked a new /bin/bash as a fork process. Same thing can be done in any language cpp/python/java right?

    • @RockwellAIM65
      @RockwellAIM65 Год назад

      Efficiency. You can build a completely self-contained binary that does everything. If you add https or a straight TLS socket you only need the exe and a cert file... it's super clean.
      With Python you may have versioning/suppor issues.
      Java is a pig - it latches onto cpu+memory resources. Not really apropos.
      C++ is ok for this, but younger engineers may not know it + unix command programming in C++ can be a bit tricky. Golang makes it (and certain other tasks) pretty straightforward.
      I would use either C or golang. Maybe Rust but I don't know it yet.

    • @piyushsingh178
      @piyushsingh178 Год назад

      @@RockwellAIM65 yeah I think outside of Go, c++ would be the best choice

    • @RockwellAIM65
      @RockwellAIM65 Год назад

      @@piyushsingh178 A C based solution would be clean; you'd have to add lots of external libraries tho' ... would have been nice if C had a standard add-on for managing databases, doing all the simple network type transactions w/ a second thread perhaps (application+background processing thread) + an easy-to-interface string based hierarchical data store. C++ wasn't really necessary... it turned into the Cobol of the 1990s!

  • @TheBendixSA
    @TheBendixSA 2 года назад

    Badass

  • @konstantingeyst4568
    @konstantingeyst4568 7 месяцев назад

    Note that child processes can call chroot() again and break outside of this container easily. Docker doesn't use chroot.

  • @LilRofl
    @LilRofl 10 месяцев назад

    🤯

  • @obrien8228
    @obrien8228 11 месяцев назад +1

    wait this is so easy

  • @pclokcer
    @pclokcer 2 года назад

    Likee

  • @GerinoMorn
    @GerinoMorn 8 месяцев назад

    Why am I watching 7yo video about sth I don't do very often in a language I don't use, I don't know. But it''s good xD

  • @marccawood
    @marccawood 4 года назад +1

    I thought Linux supported containers/virtualization natively (LXC) - why is she faking container isolation by e.g. mounting alternative file systems?

    • @l1703
      @l1703 4 года назад +2

      How is she faking it ?

    • @reprC
      @reprC 4 года назад +4

      When did she mount an alternative fs? When she mounted proc? Or do you mean the chroot? The chroot source dir already contains a file system hierarchy because the child process quite literally has a different root, and would not be able to access anything “outside”. Without this, calling /bin/bash would do nothing since that path wouldn’t even exist. Mounting proc is required purely because of the chroot. LXC isn’t a “native” feature, cgroups are. LXC is just one of several system virtualization frameworks such as libvirt or systemd-nspawn. Her talk was about making containers from scratch, which I’ll interpret as a LSB compliant OS with a vanilla Linux kernel. LXC under the hood does pretty much the same thing as her code. Go ahead and check out their github; it’s all open-source. LXC has more features, but I’m pretty sure it’s quite a bit bigger than 60-ish lines

  • @cookiebinary
    @cookiebinary 4 месяца назад

    TL;DR: chroot && mount proc

  • @fardeadok
    @fardeadok 5 лет назад

    “Sublime” editor?

  • @GreyDeathVaccine
    @GreyDeathVaccine Год назад

    Too much weird sounds from Liz (don't how to say it since I am not good with english) but good presentation.

  • @SuperMarkusparkus
    @SuperMarkusparkus 5 лет назад +4

    I'm not sure it really explained what a container is or how it works. I just showed what result a few lines of go code had, but what really happened?

    • @kevint6878
      @kevint6878 5 лет назад +6

      For me it was the fact that I always sort of imagined containers as this mystical thing. I use them all the time, but I never really thought about how they are created or work under the hood. Seeing this video really opened up my mind to how simple it really is. Of course I know there is so much more to containers than that, but just seeing how she could give the processes their own namespace, their own processes, their own “isolation”, is really interesting and impressive for just 56 lines of code.

    • @foljs5858
      @foljs5858 4 года назад +1

      If you follow what it shows, you'll also see what happened. It gave the program it run isolation (not messing with the environment outside), it's own root (not seeing outside a particular directory), and a few other similar things. That's what a container like Docker does, using several OS provided utilities (like chgroups, chroot, etc), like this program does (in a more basic way)

  • @idiotshypocrites9547
    @idiotshypocrites9547 Год назад +1

    Min 05:00 and I don't know what the heck she is doing. And yes as she said, this is quite dull. And Go, why?

  • @matthijshebly
    @matthijshebly 5 лет назад +2

    Good presentation.
    One thing, however: Why the need for go? Couldn't all this have been done in plain bash? After all, all she's doing is calling system commands.

    • @markotikvic
      @markotikvic 5 лет назад +3

      Why the need for programming languages at all? After all, all they do is translate human readable code to bunch of machine instructions. Just write those instead.

    • @bt82
      @bt82 5 лет назад +5

      Docker is written in go.

    • @kirasan
      @kirasan 5 лет назад +1

      She compared the length of her code to Docker's in the end, so it had to be written in Go.

    • @foljs5858
      @foljs5858 4 года назад +3

      Yes, it could be done in plain bash. But it would be hell to maintain, scale, and make able to run arbitrary containers. Whereas this shows how a container manager like Docker does it (of course with much less functionality here), so it can be more easily extended configurable etc.

  • @NyttNorge
    @NyttNorge 5 лет назад

    What was the point of this program again?

    • @markotikvic
      @markotikvic 5 лет назад +9

      Trust me, nobody is surprised that a flat earth proponent is not able to understand something very basic.

    • @kirasan
      @kirasan 5 лет назад +1

      The point was to run a container without docker.

    • @foljs5858
      @foljs5858 4 года назад

      Isn't it OBVIOUS? To show how the basics with which a container system like Docker can be implemented...

    • @reprC
      @reprC 4 года назад +1

      What was the point of this comment again?

  • @idiotshypocrites9547
    @idiotshypocrites9547 Год назад +1

    06:35 cringe, with respect for trying

  • @Jone952
    @Jone952 5 лет назад +2

    Was expecting a token female the managers stuck out front then she started coding live lol

    • @shailynortiz
      @shailynortiz 3 года назад +1

      Very skewed view of the tech world where most of the innovation is done by women since the beginning of the time.

    • @Jone952
      @Jone952 3 года назад

      @@shailynortiz def not true

    • @JosueRodriguez08
      @JosueRodriguez08 3 года назад

      @@shailynortiz lol, not true

    • @automatic241
      @automatic241 3 года назад

      @@shailynortiz I think both views are skewed. Females are not recognized for their accomplishments in the tech world, but saying they've done the majority of innovation in that field is simply not true.

  • @alexwexov4298
    @alexwexov4298 2 года назад

    Came for Vim, saw Sublime, leave.

  • @dukearchon
    @dukearchon 6 лет назад +10

    I stopped listening once she said,"... on my Mac..."

    • @snoooters
      @snoooters 6 лет назад +18

      that's a cool story

    • @alexkozadaev911
      @alexkozadaev911 6 лет назад +38

      You got to be running the TempleOS or something to be that arrogant.

    • @coreyreichle1921
      @coreyreichle1921 6 лет назад +3

      Alex Kozadaev nope, just not a proprietary os on proprietary hardware both designed to restrict your freedoms.

    • @coreyreichle1921
      @coreyreichle1921 6 лет назад +2

      An Enemy nope. Linux.

    • @alexkozadaev911
      @alexkozadaev911 6 лет назад +14

      Corey Reichle makes sense. I also prefer Linux and OpenBSD and cannot see myself ever buying a Mac, however as we can see in this presentation despite of what you said it won’t stand in a way of doing cool stuff either :)

  • @zakariachahboun
    @zakariachahboun Год назад

    Thanks