On Fri, Jul 1, 2011 at 10:10 PM, Paul Rimba <[email protected]> wrote:
> ...
> @Ted : I thought this is the zookeeper mailing list? Could you give me a
> link for me to store anything on znode?
>
Silly me! I saw your reference to mrV2 and had just read a string of Hadoop
emails.
> so far what i have used is something like this:
>
> zk.setData(path, value.getBytes(CHARSET), -1);
> where protected ZooKeeper zk;
>
> that only updates like a string to my znode.
>
> Could you help me with that please?
>
This is just fine.
Are you saying that this:
Stat s = new Stat();
new String(zk.getData(path, false, s), CHARSET);
Does not return a copy of your string?