I'm testing the elasticity features in Flink 1.3.0. I have a job with checkpointing enabled and fixed-delay restart policy. When I kill one of the TaskManager JVM, after a while the job correctly restarts on the remaining node. However, when I add a new node, the job is not restarted automatically to make use of it.
I tried to use bin/flink stop <jobId> but it always gives me java.lang.IllegalStateException: Job with ID <jobId> is not stoppable.
How can I restart the job to make use of the additional node?