Live data from Hacker News

Interview with Eric Brewer

medium.com

141–142 of 142 posts

Re: Interview with Eric Brewer

#141
post #58

Earlier quoted context omitted.

[...] since the whole userland that you need is included in the binary (worth noting) you just dont get the debugging stuff (which is okay as long as you can choose)

would argue that it's not just the userland. you only have the functionality you need and your bits. for example an http server would have the http stack + your app. there is no userland, there are no drivers, just your app as the only thing that is running on the machine. your app basically merges with the "kernel"

the kernel has the drivers you need. the http stack needs libc or equivalent. basically its the same except statically linked, and without debug/troubleshooting tools.

yes, really!

it does reduce the attack surface/amount of things.

Re: Interview with Eric Brewer

#142
post #61

I love the idea of using containers. Due to linux popularity and google's backing, containers will be next. But FREEBSD had jails since back in the day. What's the benefit of containers over bsd jails?

Disclaimer: I work at Google on Kubernetes & Containers I mentioned earlier - https://news.ycombinator.com/item?id=9570639 - but the biggest thing is not isolation, it's portability. You do not care what you're running on, just that you have a certain amount of disk, CPU and network available to you, and the rest you handle yourself. That gives your organization a crazy amount of flexibility in moving that ball of st…

You can also archive and move jails as well...
Post reply on HN