Difference between revisions of "Linux zookeeper"

From John Freier
Jump to: navigation, search
(Created page with "ZooKeeper is a cluster operator. == Shell Commands == The server works by using things called znodes, kind of like a file system / ls - list out the directory create /test -...")
 
Line 4: Line 4:
 
The server works by using things called znodes, kind of like a file system /
 
The server works by using things called znodes, kind of like a file system /
  
ls - list out the directory
+
  ls - list out the directory
create /test - creates the znode test
+
  create /test - creates the znode test
get /test - gets the data for the znode
+
  get /test - gets the data for the znode

Revision as of 09:44, 18 July 2017

ZooKeeper is a cluster operator.

Shell Commands

The server works by using things called znodes, kind of like a file system /

 ls - list out the directory
 create /test - creates the znode test
 get /test - gets the data for the znode