Hi Guys, I was going through the Flink sql client configuration YAML from the training example and came across a section in the configuration as below:
############################################################ # Deployment properties allow for describing the cluster to which table# programs are submitted to. deployment: type: standalone # only the 'standalone' deployment is supported response-timeout: 5000 # general cluster communication timeout in ms gateway-address: "" # (optional) address from cluster to gateway gateway-port: 0 # (optional) port from cluster to gateway ############################################################## The first property of the deployment section "type" says that only standalone deployment of the program is supported , does that mean that Flink SQL client is non functional in when Flink running in Cluster mode. Also i cannot find any documentation for this configuration stating any different value of "deployment.type" for example like "cluster" or something. I want to implement an API on the SQL client which will support dynamic submission of configurations and thereby sql queries on the fly for the new configuration. If Flink sql is non-functional in Flink cluster then the effort will be not worth because in that case i will have to first see how the program can be made to work in Flink cluster first and then implement the API on top of that. Please kindly help me on the same , as i am stuck for further changes and i am still not going in to identify if what i see is true because it will take more time to identify through code which can be probably answered faster by your team. RegardsDipanjan