Posts

Showing posts with the label apache-zookeeper

How to check which schema registry instances are connected to a Zookeeper quorum

How to check which schema registry instances are connected to a Zookeeper quorum I am running two instances of schema registry that point to the same zookeeper quorum Here are the properties of the first instance: port=8081 # The address the socket server listens on. # FORMAT: # listeners = listener_name://host_name:port # EXAMPLE: # listeners = PLAINTEXT://your.host.name:9092 listeners=http://0.0.0.0:8081 # Zookeeper connection string for the Zookeeper cluster used by your Kafka cluster # (see zookeeper docs for details). # This is a comma separated host:port pairs, each corresponding to a zk # server. e.g. "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002". kafkastore.connection.url=host-1:2181,host-2:2181,host-3:2181 # Alternatively, Schema Registry can now operate without Zookeeper, handling all coordination via # Kafka brokers. Use this setting to specify the bootstrap servers for your Kafka cluster and it # will be used both for selecting the master schema regis...