Re: Kubernetes Application Cluster Not Working
Posted by
Claude Murad on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/Kubernetes-Application-Cluster-Not-Working-tp42489p42602.html
This issue was resolved by adding the following environment variable to both the jobmanager and taskmanager:
- name: JOB_MANAGER_RPC_ADDRESS
value: jobmanager
Are you sure that the JobManager akka address is binded to "flink-jobmanager"?
You could set "jobmanager.rpc.address" to flink-jobmanager in the ConfigMap.
Best,
Yang
Hi, M
Could you give the full stack? This might not be the root cause.
Hello,
apiVersion: v1
kind: Service
metadata:
name: flink-jobmanager
spec:
type: ClusterIP
ports:
- name: rpc
port: 6123
- name: blob-server
port: 6124
- name: webui
port: 8081
selector:
app: flink
component: jobmanager
I am able to access the jobmanager UI but the taskmanagers are failing w/ the following error:
Could not resolve ResourceManager address akka.tcp://flink@flink-jobmanager:6123/user/rpc/resourcemanager_*
Any ideas about this?
Thanks