Did you specify hbase.rootdir ? Cheers
On Sat, Dec 7, 2013 at 12:27 AM, Rural Hunter <[email protected]> wrote: > Hi, > > I set up a hbase cluster(hbase-0.96.0-hadoop2 + hadoop-2.2.0) with 1 > master and 3 slaves. Everything seems fine when I use hbase shell on the > master. I could create/scan tables. But when I tried to run a test Java > class on the remote server, it just hung up. This is the simple program: > Configuration myConf = HBaseConfiguration.create(); > myConf.set("hbase.zookeeper.quorum",SERVER_ADDR); > HTableInterface testTable = new HTable(myConf, "test"); > Get g = new Get(Bytes.toBytes("row1")); > Result r = testTable.get(g); > System.out.println(r.getRow()); > testTable.close(); > > There is no hadoop/hbase installation and hbase-site.xml on the client. I > just put needed jars in classpath. I set the log level to debug and I found > these: > > --- exec-maven-plugin:1.2.1:exec (default-cli) @ tests --- > lib.MutableMetricsFactory field org.apache.hadoop.metrics2.lib.MutableRate > org.apache.hadoop.security.UserGroupInformation$UgiMetrics.loginSuccess > with annotation @org.apache.hadoop.metrics2.annotation.Metric(valueName=Time, > about=, value=[Rate of successful kerberos logins and latency > (milliseconds)], always=false, type=DEFAULT, sampleName=Ops) > lib.MutableMetricsFactory field org.apache.hadoop.metrics2.lib.MutableRate > org.apache.hadoop.security.UserGroupInformation$UgiMetrics.loginFailure > with annotation @org.apache.hadoop.metrics2.annotation.Metric(valueName=Time, > about=, value=[Rate of failed kerberos logins and latency (milliseconds)], > always=false, type=DEFAULT, sampleName=Ops) > impl.MetricsSystemImpl UgiMetrics, User and group related metrics > util.KerberosName Kerberos krb5 configuration not found, setting default > realm to empty > security.Groups Creating new Groups object > util.NativeCodeLoader Trying to load the custom-built native-hadoop > library... > util.NativeCodeLoader Failed to load native-hadoop with error: > java.lang.UnsatisfiedLinkError: > no hadoop in java.library.path > util.NativeCodeLoader java.library.path=C:\Program > Files\Java\jdk1.7\bin;C:\Windows\Sun\Java\bin;C:\ > Windows\system32;C:\Windows;C:\Program Files (x86)\Common > Files\NetSarang;C:\Windows\system32;C:\Windows;C:\ > Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program > Files\ThinkPad\Bluetooth Software\;C:\Program Files\ThinkPad\Bluetooth > Software\syswow64;C:\Program Files (x86)\ATI > Technologies\ATI.ACE\Core-Static;C:\Program > Files\TortoiseGit\bin;C:\Program Files\TortoiseHg\;. > [WARN] util.NativeCodeLoader Unable to load native-hadoop library for your > platform... using builtin-java classes where applicable > security.JniBasedUnixGroupsMappingWithFallback Falling back to shell based > security.JniBasedUnixGroupsMappingWithFallback Group mapping > impl=org.apache.hadoop.security.ShellBasedUnixGroupsMapping > security.Groups Group mapping impl=org.apache.hadoop.security. > JniBasedUnixGroupsMappingWithFallback; cacheTimeout=300000 > security.UserGroupInformation hadoop login > security.UserGroupInformation hadoop login commit > security.UserGroupInformation using local user:NTUserPrincipal: ruralhunter > security.UserGroupInformation UGI loginUser:ruralhunter (auth:SIMPLE) > util.Shell Failed to detect a valid hadoop home directory > java.io.IOException: HADOOP_HOME or hadoop.home.dir are not set. > at org.apache.hadoop.util.Shell.checkHadoopHome(Shell.java:225) > at org.apache.hadoop.util.Shell.<clinit>(Shell.java:250) > at org.apache.hadoop.util.StringUtils.<clinit>(StringUtils.java:76) > at org.apache.hadoop.conf.Configuration.getStrings( > Configuration.java:1514) > at org.apache.hadoop.hbase.zookeeper.ZKConfig. > makeZKProps(ZKConfig.java:113) > at org.apache.hadoop.hbase.zookeeper.ZKConfig. > getZKQuorumServersString(ZKConfig.java:265) > at org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher.< > init>(ZooKeeperWatcher.java:159) > at org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher.< > init>(ZooKeeperWatcher.java:134) > at org.apache.hadoop.hbase.client.ZooKeeperKeepAliveConnection.<init>( > ZooKeeperKeepAliveConnection.java:43) > at org.apache.hadoop.hbase.client.HConnectionManager$ > HConnectionImplementation.getKeepAliveZooKeeperWatcher( > HConnectionManager.java:1722) > at org.apache.hadoop.hbase.client.ZooKeeperRegistry.getClusterId( > ZooKeeperRegistry.java:82) > at org.apache.hadoop.hbase.client.HConnectionManager$ > HConnectionImplementation.retrieveClusterId(HConnectionManager.java:794) > at org.apache.hadoop.hbase.client.HConnectionManager$ > HConnectionImplementation.<init>(HConnectionManager.java:627) > at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > Method) > at sun.reflect.NativeConstructorAccessorImpl.newInstance( > NativeConstructorAccessorImpl.java:57) > at sun.reflect.DelegatingConstructorAccessorImpl.newInstance( > DelegatingConstructorAccessorImpl.java:45) > at java.lang.reflect.Constructor.newInstance(Constructor.java:526) > at org.apache.hadoop.hbase.client.HConnectionManager.createConnection( > HConnectionManager.java:381) > at org.apache.hadoop.hbase.client.HConnectionManager.createConnection( > HConnectionManager.java:360) > at org.apache.hadoop.hbase.client.HConnectionManager.getConnection( > HConnectionManager.java:244) > at org.apache.hadoop.hbase.client.HTable.<init>(HTable.java:187) > at org.apache.hadoop.hbase.client.HTable.<init>(HTable.java:149) > at com.cyyun.webmon.tests.hadoop.HBaseTest.main(HBaseTest.java:25) > util.Shell Failed to locate the winutils binary in the hadoop binary path > java.io.IOException: Could not locate executable null\bin\winutils.exe in > the Hadoop binaries. > at org.apache.hadoop.util.Shell.getQualifiedBinPath(Shell.java:278) > at org.apache.hadoop.util.Shell.getWinUtilsPath(Shell.java:300) > at org.apache.hadoop.util.Shell.<clinit>(Shell.java:293) > at org.apache.hadoop.util.StringUtils.<clinit>(StringUtils.java:76) > at org.apache.hadoop.conf.Configuration.getStrings( > Configuration.java:1514) > at org.apache.hadoop.hbase.zookeeper.ZKConfig. > makeZKProps(ZKConfig.java:113) > at org.apache.hadoop.hbase.zookeeper.ZKConfig. > getZKQuorumServersString(ZKConfig.java:265) > at org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher.< > init>(ZooKeeperWatcher.java:159) > at org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher.< > init>(ZooKeeperWatcher.java:134) > at org.apache.hadoop.hbase.client.ZooKeeperKeepAliveConnection.<init>( > ZooKeeperKeepAliveConnection.java:43) > at org.apache.hadoop.hbase.client.HConnectionManager$ > HConnectionImplementation.getKeepAliveZooKeeperWatcher( > HConnectionManager.java:1722) > at org.apache.hadoop.hbase.client.ZooKeeperRegistry.getClusterId( > ZooKeeperRegistry.java:82) > at org.apache.hadoop.hbase.client.HConnectionManager$ > HConnectionImplementation.retrieveClusterId(HConnectionManager.java:794) > at org.apache.hadoop.hbase.client.HConnectionManager$ > HConnectionImplementation.<init>(HConnectionManager.java:627) > at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > Method) > at sun.reflect.NativeConstructorAccessorImpl.newInstance( > NativeConstructorAccessorImpl.java:57) > at sun.reflect.DelegatingConstructorAccessorImpl.newInstance( > DelegatingConstructorAccessorImpl.java:45) > at java.lang.reflect.Constructor.newInstance(Constructor.java:526) > at org.apache.hadoop.hbase.client.HConnectionManager.createConnection( > HConnectionManager.java:381) > at org.apache.hadoop.hbase.client.HConnectionManager.createConnection( > HConnectionManager.java:360) > at org.apache.hadoop.hbase.client.HConnectionManager.getConnection( > HConnectionManager.java:244) > at org.apache.hadoop.hbase.client.HTable.<init>(HTable.java:187) > at org.apache.hadoop.hbase.client.HTable.<init>(HTable.java:149) > at com.cyyun.webmon.tests.hadoop.HBaseTest.main(HBaseTest.java:25) > zookeeper.ZooKeeper Client environment:zookeeper.version=3.4.5-1392090, > built on 09/30/2012 17:52 GMT > zookeeper.ZooKeeper Client environment:host.name=t400 > zookeeper.ZooKeeper Client environment:java.version=1.7.0_40 > > zookeeper.ZooKeeper Client environment:java.vendor=Oracle Corporation > zookeeper.ZooKeeper Client environment:java.home=C:\Program > Files\Java\jdk1.7\jre > zookeeper.ZooKeeper Client environment:java.class.path=G: > \dev\tests\target\classes;C:\Users\ruralhunter\.m2\repository\org\mybatis\ > mybatis\3.2.1\mybatis-3.2.1.jar;C:\Users\ruralhunter\.m2\ > repository\org\apache\tapestry\tapestry-core\5.3.6\ > tapestry-core-5.3.6.jar;C:\Users\ruralhunter\.m2\repository\org\apache\ > tapestry\tapestry-json\5.3.6\tapestry-json-5.3.6.jar;C:\ > Users\ruralhunter\.m2\repository\org\antlr\antlr- > runtime\3.3\antlr-runtime-3.3.jar;C:\Users\ruralhunter\.m2\ > repository\org\antlr\stringtemplate\3.2.1\stringtemplate-3.2.1.jar;C:\ > Users\ruralhunter\.m2\repository\org\apache\tapestry\tapestry-ioc\5.3.6\ > tapestry-ioc-5.3.6.jar;C:\Users\ruralhunter\.m2\repository\org\apache\ > tapestry\tapestry5-annotations\5.3.6\tapestry5-annotations-5.3.6.jar;C:\ > Users\ruralhunter\.m2\repository\org\apache\tapestry\tapestry-func\5.3.6\ > tapestry-func-5.3.6.jar;C:\Users\ruralhunter\.m2\ > repository\javax\inject\javax.inject\1\javax.inject-1.jar;C: > \Users\ruralhunter\.m2\repository\org\apache\tapestry\plastic\5.3.6\ > plastic-5.3.6.jar;C:\Users\ruralhunter\.m2\repository\javassist\javassist\ > 3.12.1.GA\javassist-3.12.1.GA.jar;C:\Users\ruralhunter\.m2\ > repository\commons-codec\commons-codec\1.5\commons-codec-1.5.jar;C:\Users\ > ruralhunter\.m2\repository\postgresql\postgresql\9.1-901. > jdbc4\postgresql-9.1-901.jdbc4.jar;C:\Users\ruralhunter\.m2\repository\ > commons-lang\commons-lang\2.6\commons-lang-2.6.jar;C:\Users\ > ruralhunter\.m2\repository\com\googlecode\javapns\ > javapns\2.2\javapns-2.2.jar;C:\Users\ruralhunter\.m2\ > repository\org\bouncycastle\bcprov-jdk16\1.46\bcprov- > jdk16-1.46.jar;C:\Users\ruralhunter\.m2\repository\com\cyyun\commons\flib\ > commons-flib\1.20\commons-flib-1.20.jar;C:\Users\ > ruralhunter\.m2\repository\commons-dbcp\commons-dbcp\1.4\ > commons-dbcp-1.4.jar;C:\Users\ruralhunter\.m2\repository\ > commons-pool\commons-pool\1.5.4\commons-pool-1.5.4.jar;C:\ > Users\ruralhunter\.m2\repository\com\cyyun\webmon\ > htmlunit\2.11.1\htmlunit-2.11.1.jar;C:\Users\ruralhunter\. > m2\repository\xalan\xalan\2.7.1\xalan-2.7.1.jar;C:\Users\ > ruralhunter\.m2\repository\xalan\serializer\2.7.1\ > serializer-2.7.1.jar;C:\Users\ruralhunter\.m2\repository\ > commons-collections\commons-collections\3.2.1\commons- > collections-3.2.1.jar;C:\Users\ruralhunter\.m2\ > repository\org\apache\commons\commons-lang3\3.1\commons- > lang3-3.1.jar;C:\Users\ruralhunter\.m2\repository\ > org\apache\httpcomponents\httpclient\4.2.2\httpclient-4. > 2.2.jar;C:\Users\ruralhunter\.m2\repository\org\apache\ > httpcomponents\httpcore\4.2.2\httpcore-4.2.2.jar;C:\Users\ > ruralhunter\.m2\repository\org\apache\httpcomponents\ > httpmime\4.2.2\httpmime-4.2.2.jar;C:\Users\ruralhunter\.m2\ > repository\net\sourceforge\htmlunit\htmlunit-core-js\2. > 11\htmlunit-core-js-2.11.jar;C:\Users\ruralhunter\.m2\ > repository\xerces\xercesImpl\2.10.0\xercesImpl-2.10.0.jar; > C:\Users\ruralhunter\.m2\repository\xml-apis\xml-apis\ > 1.4.01\xml-apis-1.4.01.jar;C:\Users\ruralhunter\.m2\ > repository\net\sourceforge\nekohtml\nekohtml\1.9.17\ > nekohtml-1.9.17.jar;C:\Users\ruralhunter\.m2\repository\ > net\sourceforge\cssparser\cssparser\0.9.8\cssparser-0.9. > 8.jar;C:\Users\ruralhunter\.m2\repository\org\w3c\css\sac\ > 1.3\sac-1.3.jar;C:\Users\ruralhunter\.m2\repository\ > org\eclipse\jetty\jetty-websocket\8.1.7.v20120910\jetty-websocket-8.1.7. > v20120910.jar;C:\Users\ruralhunter\.m2\repository\ > org\eclipse\jetty\jetty-util\8.1.7.v20120910\jetty-util-8. > 1.7.v20120910.jar;C:\Users\ruralhunter\.m2\repository\ > org\eclipse\jetty\jetty-io\8.1.7.v20120910\jetty-io-8.1.7. > v20120910.jar;C:\Users\ruralhunter\.m2\repository\ > org\eclipse\jetty\jetty-http\8.1.7.v20120910\jetty-http-8. > 1.7.v20120910.jar;C:\Users\ruralhunter\.m2\repository\ > fast-md5\fast-md5\2.5\fast-md5-2.5.jar;C:\Users\ > ruralhunter\.m2\repository\net\sourceforge\cpdetector\ > cpdetector\1.0.7\cpdetector-1.0.7.jar;C:\Users\ruralhunter\. > m2\repository\antlr\antlr\2.7.7\antlr-2.7.7.jar;C:\Users\ > ruralhunter\.m2\repository\net\sourceforge\jchardet\ > jchardet\1.0\jchardet-1.0.jar;C:\Users\ruralhunter\.m2\ > repository\com\google\code\mmseg4j\mmseg4j-core\1.8.5\ > mmseg4j-core-1.8.5.jar;C:\Users\ruralhunter\.m2\ > repository\org\apache\lucene\lucene-core\3.6.1\lucene-core- > 3.6.1.jar;C:\Users\ruralhunter\.m2\repository\com\github\hoverruan\ > weiboclient4j\0.4.7\weiboclient4j-0.4.7.jar;C:\Users\ruralhunter\.m2\ > repository\org\scribe\scribe\1.3.5\scribe-1.3.5.jar;C:\ > Users\ruralhunter\.m2\repository\org\codehaus\ > jackson\jackson-mapper-asl\1.9.13\jackson-mapper-asl-1.9. > 13.jar;C:\Users\ruralhunter\.m2\repository\org\codehaus\ > jackson\jackson-core-asl\1.9.13\jackson-core-asl-1.9.13. > jar;C:\Users\ruralhunter\.m2\repository\org\apache\hadoop\ > hadoop-mapreduce-client-core\2.2.0\hadoop-mapreduce-client- > core-2.2.0.jar;C:\Users\ruralhunter\.m2\repository\ > org\apache\hadoop\hadoop-yarn-common\2.2.0\hadoop-yarn- > common-2.2.0.jar;C:\Users\ruralhunter\.m2\repository\ > org\apache\hadoop\hadoop-yarn-api\2.2.0\hadoop-yarn-api-2.2. > 0.jar;C:\Users\ruralhunter\.m2\repository\com\google\ > inject\guice\3.0\guice-3.0.jar;C:\Users\ruralhunter\.m2\ > repository\aopalliance\aopalliance\1.0\aopalliance-1. > 0.jar;C:\Users\ruralhunter\.m2\repository\com\sun\jersey\ > jersey-test-framework\jersey-test-framework-grizzly2\1.9\ > jersey-test-framework-grizzly2-1.9.jar;C:\Users\ > ruralhunter\.m2\repository\com\sun\jersey\jersey-test- > framework\jersey-test-framework-core\1.9\jersey- > test-framework-core-1.9.jar;C:\Users\ruralhunter\.m2\ > repository\javax\servlet\javax.servlet-api\3.0.1\javax. > servlet-api-3.0.1.jar;C:\Users\ruralhunter\.m2\repository\com\sun\jersey\ > jersey-client\1.9\jersey-client-1.9.jar;C:\Users\ > ruralhunter\.m2\repository\com\sun\jersey\jersey- > grizzly2\1.9\jersey-grizzly2-1.9.jar;C:\Users\ruralhunter\. > m2\repository\org\glassfish\grizzly\grizzly-http\2.1.2\ > grizzly-http-2.1.2.jar;C:\Users\ruralhunter\.m2\repository\org\glassfish\ > grizzly\grizzly-framework\2.1.2\grizzly-framework-2.1.2.jar; > C:\Users\ruralhunter\.m2\repository\org\glassfish\ > gmbal\gmbal-api-only\3.0.0-b023\gmbal-api-only-3.0.0- > b023.jar;C:\Users\ruralhunter\.m2\repository\org\glassfish\ > external\management-api\3.0.0-b012\management-api-3.0.0- > b012.jar;C:\Users\ruralhunter\.m2\repository\org\glassfish\ > grizzly\grizzly-http-server\2.1.2\grizzly-http-server-2.1.2. > jar;C:\Users\ruralhunter\.m2\repository\org\glassfish\ > grizzly\grizzly-rcm\2.1.2\grizzly-rcm-2.1.2.jar;C:\Users\ruralhunter\.m2\ > repository\org\glassfish\grizzly\grizzly-http-servlet\ > 2.1.2\grizzly-http-servlet-2.1.2.jar;C:\Users\ruralhunter\. > m2\repository\org\glassfish\javax.servlet\3.1\javax. > servlet-3.1.jar;C:\Users\ruralhunter\.m2\repository\ > com\sun\jersey\contribs\jersey-guice\1.9\jersey-guice- > 1.9.jar;C:\Users\ruralhunter\.m2\repository\com\google\ > protobuf\protobuf-java\2.5.0\protobuf-java-2.5.0.jar;C:\ > Users\ruralhunter\.m2\repository\org\apache\avro\ > avro\1.7.4\avro-1.7.4.jar;C:\Users\ruralhunter\.m2\ > repository\com\thoughtworks\paranamer\paranamer\2.3\ > paranamer-2.3.jar;C:\Users\ruralhunter\.m2\repository\ > org\xerial\snappy\snappy-java\1.0.4.1\snappy-java-1.0.4.1. > jar;C:\Users\ruralhunter\.m2\repository\org\slf4j\slf4j- > api\1.7.5\slf4j-api-1.7.5.jar;C:\Users\ruralhunter\.m2\ > repository\org\slf4j\slf4j-log4j12\1.7.5\slf4j-log4j12-1. > 7.5.jar;C:\Users\ruralhunter\.m2\repository\org\apache\ > hadoop\hadoop-annotations\2.2.0\hadoop-annotations-2.2.0. > jar;C:\Users\ruralhunter\.m2\repository\com\google\inject\ > extensions\guice-servlet\3.0\guice-servlet-3.0.jar;C:\ > Users\ruralhunter\.m2\repository\io\netty\netty\3.6. > 2.Final\netty-3.6.2.Final.jar;C:\Users\ruralhunter\.m2\ > repository\org\apache\hadoop\hadoop-common\2.2.0\hadoop- > common-2.2.0.jar;C:\Users\ruralhunter\.m2\repository\ > com\google\guava\guava\11.0.2\guava-11.0.2.jar;C:\Users\ > ruralhunter\.m2\repository\com\google\code\findbugs\ > jsr305\1.3.9\jsr305-1.3.9.jar;C:\Users\ruralhunter\.m2\ > repository\commons-cli\commons-cli\1.2\commons-cli-1. > 2.jar;C:\Users\ruralhunter\.m2\repository\org\apache\ > commons\commons-math\2.1\commons-math-2.1.jar;C:\Users\ > ruralhunter\.m2\repository\xmlenc\xmlenc\0.52\xmlenc-0. > 52.jar;C:\Users\ruralhunter\.m2\repository\commons- > httpclient\commons-httpclient\3.1\commons-httpclient-3.1. > jar;C:\Users\ruralhunter\.m2\repository\commons-io\commons- > io\2.1\commons-io-2.1.jar;C:\Users\ruralhunter\.m2\repository\commons-net\ > commons-net\3.1\commons-net-3.1.jar;C:\Users\ruralhunter\. > m2\repository\javax\servlet\servlet-api\2.5\servlet-api-2. > 5.jar;C:\Users\ruralhunter\.m2\repository\org\mortbay\ > jetty\jetty\6.1.26\jetty-6.1.26.jar;C:\Users\ruralhunter\. > m2\repository\org\mortbay\jetty\jetty-util\6.1.26\jetty- > util-6.1.26.jar;C:\Users\ruralhunter\.m2\repository\ > com\sun\jersey\jersey-core\1.9\jersey-core-1.9.jar;C:\ > Users\ruralhunter\.m2\repository\com\sun\jersey\ > jersey-json\1.9\jersey-json-1.9.jar;C:\Users\ruralhunter\. > m2\repository\org\codehaus\jettison\jettison\1.1\ > jettison-1.1.jar;C:\Users\ruralhunter\.m2\repository\ > stax\stax-api\1.0.1\stax-api-1.0.1.jar;C:\Users\ > ruralhunter\.m2\repository\com\sun\xml\bind\jaxb-impl\2. > 2.3-1\jaxb-impl-2.2.3-1.jar;C:\Users\ruralhunter\.m2\ > repository\javax\xml\bind\jaxb-api\2.2.2\jaxb-api-2.2.2. > jar;C:\Users\ruralhunter\.m2\repository\javax\activation\ > activation\1.1\activation-1.1.jar;C:\Users\ruralhunter\.m2\ > repository\org\codehaus\jackson\jackson-jaxrs\1.8.3\ > jackson-jaxrs-1.8.3.jar;C:\Users\ruralhunter\.m2\repository\org\codehaus\ > jackson\jackson-xc\1.8.3\jackson-xc-1.8.3.jar;C:\Users\ > ruralhunter\.m2\repository\com\sun\jersey\jersey-server\ > 1.9\jersey-server-1.9.jar;C:\Users\ruralhunter\.m2\ > repository\asm\asm\3.1\asm-3.1.jar;C:\Users\ruralhunter\. > m2\repository\tomcat\jasper-compiler\5.5.23\jasper- > compiler-5.5.23.jar;C:\Users\ruralhunter\.m2\repository\ > tomcat\jasper-runtime\5.5.23\jasper-runtime-5.5.23.jar;C:\ > Users\ruralhunter\.m2\repository\javax\servlet\jsp\ > jsp-api\2.1\jsp-api-2.1.jar;C:\Users\ruralhunter\.m2\ > repository\commons-el\commons-el\1.0\commons-el-1.0.jar;C:\ > Users\ruralhunter\.m2\repository\commons-logging\ > commons-logging\1.1.1\commons-logging-1.1.1.jar;C:\Users\ > ruralhunter\.m2\repository\log4j\log4j\1.2.17\log4j-1.2. > 17.jar;C:\Users\ruralhunter\.m2\repository\net\java\dev\ > jets3t\jets3t\0.6.1\jets3t-0.6.1.jar;C:\Users\ruralhunter\. > m2\repository\commons-configuration\commons-configuration\1.6\commons- > configuration-1.6.jar;C:\Users\ruralhunter\.m2\ > repository\commons-digester\commons-digester\1.8\commons- > digester-1.8.jar;C:\Users\ruralhunter\.m2\repository\ > commons-beanutils\commons-beanutils\1.7.0\commons- > beanutils-1.7.0.jar;C:\Users\ruralhunter\.m2\repository\ > commons-beanutils\commons-beanutils-core\1.8.0\commons- > beanutils-core-1.8.0.jar;C:\Users\ruralhunter\.m2\ > repository\org\apache\hadoop\hadoop-auth\2.2.0\hadoop-auth- > 2.2.0.jar;C:\Users\ruralhunter\.m2\repository\ > com\jcraft\jsch\0.1.42\jsch-0.1.42.jar;C:\Users\ruralhunter\ > .m2\repository\org\apache\zookeeper\zookeeper\3.4.5\ > zookeeper-3.4.5.jar;C:\Users\ruralhunter\.m2\repository\ > org\apache\commons\commons-compress\1.4.1\commons- > compress-1.4.1.jar;C:\Users\ruralhunter\.m2\repository\ > org\tukaani\xz\1.0\xz-1.0.jar;C:\Users\ruralhunter\.m2\ > repository\com\google\code\gson\gson\2.2.4\gson-2.2.4. > jar;C:\Users\ruralhunter\.m2\repository\org\apache\hbase\ > hbase-client\0.96.0-hadoop2\hbase-client-0.96.0-hadoop2. > jar;C:\Users\ruralhunter\.m2\repository\org\apache\hbase\ > hbase-common\0.96.0-hadoop2\hbase-common-0.96.0-hadoop2. > jar;C:\Users\ruralhunter\.m2\repository\org\apache\hbase\ > hbase-protocol\0.96.0-hadoop2\hbase-protocol-0.96.0-hadoop2. > jar;C:\Users\ruralhunter\.m2\repository\org\cloudera\ > htrace\htrace-core\2.01\htrace-core-2.01.jar;C:\Users\ > ruralhunter\.m2\repository\com\github\stephenc\findbugs\ > findbugs-annotations\1.3.9-1\findbugs-annotations-1.3.9-1. > jar;C:\Users\ruralhunter\.m2\repository\junit\junit\4.11\junit-4.11.jar > zookeeper.ZooKeeper Client environment:java.library.path=C:\Program > Files\Java\jdk1.7\bin;C:\Windows\Sun\Java\bin;C:\ > Windows\system32;C:\Windows;C:\Program Files (x86)\Common > Files\NetSarang;C:\Windows\system32;C:\Windows;C:\ > Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program > Files\ThinkPad\Bluetooth Software\;C:\Program Files\ThinkPad\Bluetooth > Software\syswow64;C:\Program Files (x86)\ATI > Technologies\ATI.ACE\Core-Static;C:\Program > Files\TortoiseGit\bin;C:\Program Files\TortoiseHg\;. > zookeeper.ZooKeeper Client environment:java.io.tmpdir=C:\ > Users\ruralhunter\AppData\Local\Temp\ > zookeeper.ZooKeeper Client environment:java.compiler=<NA> > zookeeper.ZooKeeper Client environment:os.name=Windows 7 > zookeeper.ZooKeeper Client environment:os.arch=amd64 > zookeeper.ZooKeeper Client environment:os.version=6.1 > zookeeper.ZooKeeper Client environment:user.name=ruralhunter > zookeeper.ZooKeeper Client environment:user.home=C:\Users\ruralhunter > zookeeper.ZooKeeper Client environment:user.dir=G:\dev\tests > zookeeper.ZooKeeper Initiating client connection, connectString= > www.cyyun.com:2181 sessionTimeout=90000 watcher=hconnection-0x7c542b0c > zookeeper.ClientCnxn zookeeper.disableAutoWatchReset is false > zookeeper.RecoverableZooKeeper Process identifier=hconnection-0x7c542b0c > connecting to ZooKeeper ensemble=www.cyyun.com:2181 > zookeeper.ClientCnxn Opening socket connection to server > 183.136.140.115/183.136.140.115:2181. Will not attempt to authenticate > using SASL (unknown error) > zookeeper.ClientCnxn Socket connection established to > 183.136.140.115/183.136.140.115:2181, initiating session > zookeeper.ClientCnxn Session establishment request sent on > 183.136.140.115/183.136.140.115:2181 > zookeeper.ClientCnxn Session establishment complete on server > 183.136.140.115/183.136.140.115:2181, sessionid = 0x242c837cade0003, > negotiated timeout = 90000 > zookeeper.ZooKeeperWatcher hconnection-0x7c542b0c Received ZooKeeper > Event, type=None, state=SyncConnected, path=null > zookeeper.ZooKeeperWatcher hconnection-0x7c542b0c-0x242c837cade0003 > connected > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 1,3 replyHeader:: > 1,60129542207,0 request:: '/hbase/hbaseid,F response:: > s{4294967311,60129542151,1386147583968,1386338584187,11,0,0,0,67,0,4294967311} > > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 2,4 replyHeader:: > 2,60129542207,0 request:: '/hbase/hbaseid,F response:: # > ffffffff000146d61737465723a363030303065ffffffcd63476ffffffc7 > ffffffe4ffffff9050425546a2430363964343061662d336264622d34383 > 6642d626163302d363035653731343863333235,s{4294967311, > 60129542151,1386147583968,1386338584187,11,0,0,0,67,0,4294967311} > ipc.RpcClient Codec=org.apache.hadoop.hbase.codec.KeyValueCodec@fd81a3, > compressor=null, tcpKeepAlive=true, tcpNoDelay=true, maxIdleTime=10000, > maxRetries=0, fallbackAllowed=false, ping interval=60000ms, bind > address=null > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 3,4 replyHeader:: > 3,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 4,4 replyHeader:: > 4,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 5,4 replyHeader:: > 5,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 6,4 replyHeader:: > 6,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 7,4 replyHeader:: > 7,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 8,4 replyHeader:: > 8,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 9,4 replyHeader:: > 9,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 10,4 replyHeader:: > 10,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 11,4 replyHeader:: > 11,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 12,4 replyHeader:: > 12,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 13,4 replyHeader:: > 13,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 14,4 replyHeader:: > 14,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 15,4 replyHeader:: > 15,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 16,4 replyHeader:: > 16,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 17,4 replyHeader:: > 17,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 18,4 replyHeader:: > 18,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 19,4 replyHeader:: > 19,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 20,4 replyHeader:: > 20,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 21,4 replyHeader:: > 21,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 22,4 replyHeader:: > 22,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 23,4 replyHeader:: > 23,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 24,4 replyHeader:: > 24,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 25,4 replyHeader:: > 25,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 26,4 replyHeader:: > 26,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 27,4 replyHeader:: > 27,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 28,4 replyHeader:: > 28,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 29,4 replyHeader:: > 29,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 30,4 replyHeader:: > 30,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 31,4 replyHeader:: > 31,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 32,4 replyHeader:: > 32,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 33,4 replyHeader:: > 33,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 34,4 replyHeader:: > 34,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 35,4 replyHeader:: > 35,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 36,4 replyHeader:: > 36,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 37,4 replyHeader:: > 37,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 38,4 replyHeader:: > 38,60129542207,0 request:: '/hbase/table/hbase:meta,F response:: # > ffffffff000146d61737465723a3630303030ffffffb20ffffff8d575653 > 52ffffff9e5042554680,s{4294967343,4294967344, > 1386147589892,1386147589905,1,0,0,0,31,0,4294967343} > zookeeper.ClientCnxn Reading reply sessionid:0x242c837cade0003, packet:: > clientPath:null serverPath:null finished:false header:: 39,4 replyHeader:: > 39,60129542207,0 request:: '/hbase/meta-region-server,F response:: # > ffffffff0001a726567696f6e7365727665723a363030323016ffffffac0 > ffffff86ffffffa5ffffffa41affffffd750425546a15a86864736c61766 > 53110fffffff4ffffffd4318ffffffadffffffe4ffffffdeffffffc1ffff > ffac28100,s{60129542178,60129542178,1386338589903, > 1386338589903,0,0,0,0,60,0,60129542178} > > > The log fell into the infinite loop of requesting /hbase/table/hbase and > /hbase/meta-region-server. What's the problem? > >
