Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Accessing znodes on nifi

avatar

I am using the zookeeper provided by HDF for nifi and i do see znodes created for nifi as shown below.

ls /nifi/leaders [Primary Node, Cluster Coordinator]

How can i access the znodes Primary Node and Cluster Coordinator

Any help would be great

1 ACCEPTED SOLUTION

avatar
Super Guru

@ARUN,

You can use the below commands

/usr/hdp/current/zookeeper-client/bin/zkCli.sh -server {zk-host} -c ls "/nifi/leaders/Primary Node"
/usr/hdp/current/zookeeper-client/bin/zkCli.sh -server {zk-host} -c ls "/nifi/leaders/Cluster Coordinator"
/usr/hdp/current/zookeeper-client/bin/zkCli.sh -server {zk-host} -c get "/nifi/leaders/Primary Node"
/usr/hdp/current/zookeeper-client/bin/zkCli.sh -server {zk-host} -c get "/nifi/leaders/Cluster Coordinator"

Thanks,

Aditya

View solution in original post

1 REPLY 1

avatar
Super Guru

@ARUN,

You can use the below commands

/usr/hdp/current/zookeeper-client/bin/zkCli.sh -server {zk-host} -c ls "/nifi/leaders/Primary Node"
/usr/hdp/current/zookeeper-client/bin/zkCli.sh -server {zk-host} -c ls "/nifi/leaders/Cluster Coordinator"
/usr/hdp/current/zookeeper-client/bin/zkCli.sh -server {zk-host} -c get "/nifi/leaders/Primary Node"
/usr/hdp/current/zookeeper-client/bin/zkCli.sh -server {zk-host} -c get "/nifi/leaders/Cluster Coordinator"

Thanks,

Aditya