Hello I'm configuring flink cluster with Zookeeper for high availability for Job managers. These are the HA related configurations-
high-availability: zookeeper high-availability.cluster-id: flink high-availability.zookeeper.quorum: localhost:2181 high-availability.zookeeper.storageDir: file:///home/HA/ My concern is that high-availability.zookeeper.storageDir file location is accessed by only job managers or even the task managers will access it. My understanding was that the shared file location is used for storing of job manager meta data such as execution states and there is no need for task managers to access it. Correct me if I'm wrong.