Hi everyone. In Flink Kubernetes Operator, when us...
# random
b
Hi everyone. In Flink Kubernetes Operator, when using flink deployment in application mode, does the job and task managers are shut down once the job finishes? We created a Flink deployment with spec.job field but after the job is finished, I see the JM is still up. Is that expected?
Copy code
Flink deployment
test-flink-deployment                                       FINISHED                                   STABLE
Pod:
test-flink-deployment-6576b9b996-276wm  ●  1/1          0 Running             4h27m
g
the JM pod will stay around for some time, this helps debugging and to enable better fault tolerance on the operator side
it will be shut down after some time (or when an upgrade is executed)
b
For us it never shuts down ( like 4 hrs as I shared above). Is the shutdown period configurable?
g
I think the default is 24h
kubernetes.operator.jm-deployment.shutdown-ttl
b
Got it. Thank you very much for the response 🙏