Live data from Hacker News

Jess Frazelle

github.com

11–20 of 62 posts

Re: Jess Frazelle

#11

If you haven't heard of Jessie Frazelle, definitely check out her work. As others have expressed, she's a brilliant engineer, speaker, and writer. If I were in charge of hiring, I'd have recruiters pestering the hell out of her to join my team. Seriously, she's one of my favorite people that I've never met :)

I haven't met her (besides a very few tweeters interaction) but she counts among her fans, I really love the work that she is doing.

Re: Jess Frazelle

#13
post #9
post #5

Earlier quoted context omitted.

No, but all of the founders (and one of the top k8s guys from redhat) are at a firm based on it now: https://www.heptio.com Jessie is an incredible speaker and a really funny engineer. It was genuinely hard to not laugh watching her talk @ Monitorama last year titled "Everything is Broken": https://vimeo.com/173704265 Kubernetes is a project started by Google to make managing containers at scale, on premise, or on th…

Two of the three Kubernetes co-founders (Joe Beda and Craig Mcluckie) co-founded Heptio. The third (Brendan Burns) left Google for Microsoft, where Kubernetes on Azure reached GA today [0]. [0] http://blog.kubernetes.io/2017/02/caas-the-foundation-for-ne...

I am using k8s on azure container service. It's good! One thing I am unable to do is re-scale the cluster (add more nodes). They don't allow that somehow.

Re: Jess Frazelle

#14
"The greatest contribution need for Docker" I believe less is more. Docker has grown into an all consuming piece of complexity. The best code is code you never write.

Re: Jess Frazelle

#16
post #9

Earlier quoted context omitted.

Two of the three Kubernetes co-founders (Joe Beda and Craig Mcluckie) co-founded Heptio. The third (Brendan Burns) left Google for Microsoft, where Kubernetes on Azure reached GA today [0]. [0] http://blog.kubernetes.io/2017/02/caas-the-foundation-for-ne...

I am using k8s on azure container service. It's good! One thing I am unable to do is re-scale the cluster (add more nodes). They don't allow that somehow.

That limitation was apparently lifted today.

https://techcrunch.com/2017/02/21/kubernetes-on-microsofts-a...

"This means the service is now backed by an SLA, and users will be able to get support contracts from Microsoft. Maybe more importantly, though, Microsoft also added two pivotal new features with this update: the ability to easily scale Kubernetes clusters up and down and support for high-availability setups with multiple masters."

Re: Jess Frazelle

#20

Is kubernetes a company?

Other comments saying k8s (short f/kubernetes) people are in various companies are correct, but adding it was started at Google (and that's where jessfraz works on it).

Background for k8s is that Google had (has) an internal container scheduler called Borg (https://research.google.com/pubs/pub43438.html) with which they do clever things like pack a CPU-hungry and RAM-hungry process on the same box so all of that machine's resources get used, and can use the same server for a mix of production processes (that might e.g. be latency-sensitive need a dedicated core) and non-production tasks like internal data crunching. For example, a non-production task can run opportunistically when a prod job isn't using its full allocation of RAM, and be preempted if the production tasks need that RAM later or more important tasks come along.

Kubernetes is a ground-up effort to do the same sort of thing in the open. The components are different--etcd instead of Chubby, and of course not using Google's internal container stuff for tasks--but idea's the same.

Post reply on HN