Re: How to update Flink applications gracefully

2018-12-17 Thread Yuta Morisawa
Motavalli *From:* Yuta Morisawa *Sent:* Tuesday, December 18, 2018 6:30:09 AM *To:* user@flink.apache.org *Subject:* How to update Flink applications gracefully Hi all Now I'm trying to update my streaming application.

Re: How to update Flink applications gracefully

2018-12-17 Thread Nastaran Motavali
restart. See the following: https://ci.apache.org/projects/flink/flink-docs-release-1.7/ops/state/savepoints.html Kind regards, Nastaran Motavalli From: Yuta Morisawa Sent: Tuesday, December 18, 2018 6:30:09 AM To: user@flink.apache.org Subject: How to update

How to update Flink applications gracefully

2018-12-17 Thread Yuta Morisawa
Hi all Now I'm trying to update my streaming application. But I have no idea how to update it gracefully. Should I stop it, replace a jar file then restart it? In my understanding, in that case, all the state will be recovered if I use checkpoints in a persistent storage. Is this correct? Tha