Flink Forward San Francisco 2019

09 Apr 2019 flink kubernetes

Last week, I had a great time attending Flink Forward SF 2019. Now, I really liked the conference since there were a lot of talks where I was able to take away actionable best practices from the other professionals using Apache Flink.

And of course I’d be remiss if I didn’t mention I gave a talk myself (just check out the conference schedule!)

But I wanted to use this page for some highlights of what I saw and what I learned while I was there.

Lyft engineers gave a talk about a Kubernetes Operator used to launch Flink clusters as a single Kubernetes resource. The Kubernetes Operator framework is something open-sourced by the CoreOS team that builds on the base Kubernetes Custom Resource Definition (CRD).

Kubernetes CRDs allow users to define their own resources (like how pods or deployments are built-in resources), which gives users the power to do something like make a resource that understands when to scale itself, or when to start or stop itself.

Lyft’s Kubernetes Operator lets users define a “Flink Cluster” as a resource, which will spin up one or more high-availability Flink Job Manager pods, and one or more Flink Task Manager pods. Here are some of the other key points:

Lyft plans to open-source this project at the end of April 2019.