Re: HBase 0.94 shell throwing a NoSuchMethodError: hbase.util.Threads.sleep(I)V from ZK code

2013-01-21 Thread Jean-Marc Spaggiari
throwing a NoSuchMethodError: hbase.util.Threads.sleep(I)V from ZK code Thanks for reporting this, Benoit. Here is the call:           Threads.sleep(1); Here is the method to be called:   public static void sleep(long millis) { Notice the mismatch in argument types: 1 being integer

HBase 0.94 shell throwing a NoSuchMethodError: hbase.util.Threads.sleep(I)V from ZK code

2013-01-20 Thread tsuna
I just updated my local tree (branch 0.94, SVN r1435317) and I see these spurious exceptions in the HBase shell: $ COMPRESSION=LZO HBASE_HOME=~/src/hbase ./src/create_table.sh HBase Shell; enter 'helpRETURN' for list of supported commands. Type exitRETURN to leave the HBase Shell Version 0.94.4,

Re: HBase 0.94 shell throwing a NoSuchMethodError: hbase.util.Threads.sleep(I)V from ZK code

2013-01-20 Thread Ted Yu
Thanks for reporting this, Benoit. Here is the call: Threads.sleep(1); Here is the method to be called: public static void sleep(long millis) { Notice the mismatch in argument types: 1 being integer and millis being long. Cheers On Sun, Jan 20, 2013 at 9:01 PM, tsuna

Re: HBase 0.94 shell throwing a NoSuchMethodError: hbase.util.Threads.sleep(I)V from ZK code

2013-01-20 Thread lars hofhansl
PM Subject: Re: HBase 0.94 shell throwing a NoSuchMethodError: hbase.util.Threads.sleep(I)V from ZK code Thanks for reporting this, Benoit. Here is the call:           Threads.sleep(1); Here is the method to be called:   public static void sleep(long millis) { Notice the mismatch in argument