Hii, In the barrier example given on the page http://wiki.apache.org/hadoop/ZooKeeper/Tutorial The following is used.
zk.create(root, new byte[0], Ids.OPEN_ACL_UNSAFE, 0); It appears that in zookeeper-3.3.3 this signature has been changed. Should I write it as zk.create(root, new byte[0], Ids.OPEN_ACL_UNSAFE, null, null, 0); with the 3.3.3 version. -- thanks and regards, Apurv Verma B. Tech.(CSE) IIT- Ropar
