I am trying to implement Configuration Management through Zookeeper. I have created few ZNodes from command line as:
- create /config ""
- create /config/mypocapp ""
- create /config/mypocapp/name "John Doe"
Here, name
is one of the properties that I want to access in my app called mypocapp
.
Since we will be having a lot of properties in our application, we just can't use command line to create each and every property like this.
Is there a way we can create the properties in zookeeper through some UI or directly in a file (and import it to zookeeper).
I am completely new to zookeeper and not getting any help in this direction. Please help.