Created
October 8, 2010 05:38
-
-
Save imyousuf/616411 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> | |
<!-- | |
/** | |
* Copyright 2009 The Apache Software Foundation | |
* | |
* Licensed to the Apache Software Foundation (ASF) under one | |
* or more contributor license agreements. See the NOTICE file | |
* distributed with this work for additional information | |
* regarding copyright ownership. The ASF licenses this file | |
* to you under the Apache License, Version 2.0 (the | |
* "License"); you may not use this file except in compliance | |
* with the License. You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
*/ | |
--> | |
<configuration> | |
<property> | |
<name>hbase.master.info.bindAddress</name> | |
<value>127.0.0.1</value> | |
<description>The address for the hbase master web UI | |
</description> | |
</property> | |
<property> | |
<name>hbase.regionserver.info.bindAddress</name> | |
<value>127.0.0.1</value> | |
<description>The address for the hbase regionserver web UI | |
</description> | |
</property> | |
<property> | |
<name>hbase.zookeeper.dns.interface</name> | |
<value>eth0</value> | |
<description>The name of the Network Interface from which a ZooKeeper server | |
should report its IP address. | |
</description> | |
</property> | |
<property> | |
<name>hbase.zookeeper.dns.nameserver</name> | |
<value>default</value> | |
<description>The host name or IP address of the name server (DNS) | |
which a ZooKeeper server should use to determine the host name used by the | |
master for communication and display purposes. | |
</description> | |
</property> | |
<property> | |
<name>hbase.regionserver.dns.interface</name> | |
<value>eth0</value> | |
<description>The name of the Network Interface from which a region server | |
should report its IP address. | |
</description> | |
</property> | |
<property> | |
<name>hbase.regionserver.dns.nameserver</name> | |
<value>default</value> | |
<description>The host name or IP address of the name server (DNS) | |
which a region server should use to determine the host name used by the | |
master for communication and display purposes. | |
</description> | |
</property> | |
<property> | |
<name>hbase.master.dns.interface</name> | |
<value>eth0</value> | |
<description>The name of the Network Interface from which a master | |
should report its IP address. | |
</description> | |
</property> | |
<property> | |
<name>hbase.master.dns.nameserver</name> | |
<value>default</value> | |
<description>The host name or IP address of the name server (DNS) | |
which a master should use to determine the host name used | |
for communication and display purposes. | |
</description> | |
</property> | |
<property> | |
<name>hbase.regionserver.global.memstore.upperLimit</name> | |
<value>0.4</value> | |
<description>Maximum size of all memstores in a region server before new | |
updates are blocked and flushes are forced. Defaults to 40% of heap | |
</description> | |
</property> | |
<property> | |
<name>hbase.regionserver.global.memstore.lowerLimit</name> | |
<value>0.35</value> | |
<description>When memstores are being forced to flush to make room in | |
memory, keep flushing until we hit this mark. Defaults to 30% of heap. | |
This value equal to hbase.regionserver.global.memstore.upperLimit causes | |
the minimum possible flushing to occur when updates are blocked due to | |
memstore limiting. | |
</description> | |
</property> | |
</configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> | |
<!-- Do not modify this file directly. Instead, copy entries that you --> | |
<!-- wish to modify from this file into hdfs-site.xml and change them --> | |
<!-- there. If hdfs-site.xml does not already exist, create it. --> | |
<configuration> | |
<property> | |
<name>dfs.namenode.logging.level</name> | |
<value>all</value> | |
<description>The logging level for dfs namenode. Other values are "dir"(trac | |
e namespace mutations), "block"(trace block under/over replications and block | |
creations/deletions), or "all".</description> | |
</property> | |
<property> | |
<name>dfs.secondary.http.address</name> | |
<value>127.0.0.1:50090</value> | |
<description> | |
The secondary namenode http server address and port. | |
If the port is 0 then the server will start on a free port. | |
</description> | |
</property> | |
<property> | |
<name>dfs.datanode.address</name> | |
<value>127.0.0.1:50010</value> | |
<description> | |
The address where the datanode server will listen to. | |
If the port is 0 then the server will start on a free port. | |
</description> | |
</property> | |
<property> | |
<name>dfs.datanode.http.address</name> | |
<value>127.0.0.1:50075</value> | |
<description> | |
The datanode http server address and port. | |
If the port is 0 then the server will start on a free port. | |
</description> | |
</property> | |
<property> | |
<name>dfs.datanode.ipc.address</name> | |
<value>127.0.0.1:50020</value> | |
<description> | |
The datanode ipc server address and port. | |
If the port is 0 then the server will start on a free port. | |
</description> | |
</property> | |
<property> | |
<name>dfs.datanode.handler.count</name> | |
<value>3</value> | |
<description>The number of server threads for the datanode.</description> | |
</property> | |
<property> | |
<name>dfs.http.address</name> | |
<value>127.0.0.1:50070</value> | |
<description> | |
The address and the base port where the dfs namenode web ui will listen on. | |
If the port is 0 then the server will start on a free port. | |
</description> | |
</property> | |
<property> | |
<name>dfs.https.enable</name> | |
<value>false</value> | |
<description>Decide if HTTPS(SSL) is supported on HDFS | |
</description> | |
</property> | |
<property> | |
<name>dfs.https.need.client.auth</name> | |
<value>false</value> | |
<description>Whether SSL client certificate authentication is required | |
</description> | |
</property> | |
</configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
127.0.0.1 localhost | |
127.0.1.1 tools.smartitengineering.net tools | |
# The following lines are desirable for IPv6 capable hosts | |
::1 ip6-localhost ip6-loopback | |
fe00::0 ip6-localnet | |
ff00::0 ip6-mcastprefix | |
ff02::1 ip6-allnodes | |
ff02::2 ip6-allrouters | |
ff02::3 ip6-allhosts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~# nslookup tools.smartitengineering.net | |
Server: 192.168.1.1 | |
Address: 192.168.1.1#53 | |
Name: tools.smartitengineering.net | |
Address: 192.168.1.1 | |
~# ping tools.smartitengineering.net -c 4 | |
PING tools.smartitengineering.net (127.0.1.1) 56(84) bytes of data. | |
64 bytes from tools.smartitengineering.net (127.0.1.1): icmp_seq=1 ttl=64 time=0.077 ms | |
64 bytes from tools.smartitengineering.net (127.0.1.1): icmp_seq=2 ttl=64 time=0.043 ms | |
64 bytes from tools.smartitengineering.net (127.0.1.1): icmp_seq=3 ttl=64 time=0.036 ms | |
64 bytes from tools.smartitengineering.net (127.0.1.1): icmp_seq=4 ttl=64 time=0.039 ms | |
--- tools.smartitengineering.net ping statistics --- | |
4 packets transmitted, 4 received, 0% packet loss, time 2997ms | |
rtt min/avg/max/mdev = 0.036/0.048/0.077/0.018 ms | |
$ java -version | |
java version "1.6.0_20" | |
Java(TM) SE Runtime Environment (build 1.6.0_20-b02) | |
Java HotSpot(TM) Server VM (build 16.3-b01, mixed mode) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INFO] Scanning for projects... | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Building Resource Oriented WebService Client Impl | |
[INFO] task-segment: [test] | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] [resources:resources {execution: default-resources}] | |
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! | |
[INFO] skip non existing resourceDirectory /home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/src/main/resources | |
[INFO] [compiler:compile {execution: default-compile}] | |
[INFO] Nothing to compile - all classes are up to date | |
[INFO] [resources:testResources {execution: default-testResources}] | |
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! | |
[INFO] skip non existing resourceDirectory /home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/src/test/resources | |
[INFO] [compiler:testCompile {execution: default-testCompile}] | |
[INFO] Nothing to compile - all classes are up to date | |
[INFO] [surefire:test {execution: default-test}] | |
[INFO] Surefire report directory: /home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/surefire-reports | |
------------------------------------------------------- | |
T E S T S | |
------------------------------------------------------- | |
Running com.smartitengineering.cms.client.impl.AppTest | |
10/10/07 20:26:52 DEBUG conf.Configuration: java.io.IOException: config() | |
at org.apache.hadoop.conf.Configuration.<init>(Configuration.java:211) | |
at org.apache.hadoop.conf.Configuration.<init>(Configuration.java:198) | |
at org.apache.hadoop.hbase.HBaseConfiguration.create(HBaseConfiguration.java:73) | |
at org.apache.hadoop.hbase.HBaseTestingUtility.<init>(HBaseTestingUtility.java:105) | |
at com.smartitengineering.cms.client.impl.AppTest.<clinit>(AppTest.java:82) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
10/10/07 20:26:52 INFO hbase.HBaseTestingUtility: Starting up minicluster | |
10/10/07 20:26:52 DEBUG security.UserGroupInformation: Unix Login: hudson,nogroup,admin,hudson | |
10/10/07 20:26:52 DEBUG conf.Configuration: java.io.IOException: config() | |
at org.apache.hadoop.conf.Configuration.<init>(Configuration.java:211) | |
at org.apache.hadoop.conf.Configuration.<init>(Configuration.java:198) | |
at org.apache.hadoop.security.SecurityUtil.<clinit>(SecurityUtil.java:40) | |
at org.apache.hadoop.security.UserGroupInformation.setCurrentUser(UserGroupInformation.java:94) | |
at org.apache.hadoop.hdfs.MiniDFSCluster.<init>(MiniDFSCluster.java:237) | |
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniDFSCluster(HBaseTestingUtility.java:197) | |
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniCluster(HBaseTestingUtility.java:282) | |
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniCluster(HBaseTestingUtility.java:255) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:92) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
10/10/07 20:26:52 DEBUG conf.Configuration: java.io.IOException: config(config) | |
at org.apache.hadoop.conf.Configuration.<init>(Configuration.java:226) | |
at org.apache.hadoop.security.authorize.ConfiguredPolicy.refresh(ConfiguredPolicy.java:105) | |
at org.apache.hadoop.security.authorize.ConfiguredPolicy.<init>(ConfiguredPolicy.java:56) | |
at org.apache.hadoop.security.SecurityUtil.<clinit>(SecurityUtil.java:40) | |
at org.apache.hadoop.security.UserGroupInformation.setCurrentUser(UserGroupInformation.java:94) | |
at org.apache.hadoop.hdfs.MiniDFSCluster.<init>(MiniDFSCluster.java:237) | |
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniDFSCluster(HBaseTestingUtility.java:197) | |
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniCluster(HBaseTestingUtility.java:282) | |
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniCluster(HBaseTestingUtility.java:255) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:92) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
10/10/07 20:26:52 DEBUG security.SecurityUtil: Setting Hadoop security policy | |
10/10/07 20:26:52 DEBUG security.UserGroupInformation: Unix Login: hudson,nogroup,admin,hudson | |
10/10/07 20:26:52 INFO namenode.FSNamesystem: fsOwner=hudson,nogroup,admin,hudson | |
10/10/07 20:26:52 INFO namenode.FSNamesystem: supergroup=supergroup | |
10/10/07 20:26:52 INFO namenode.FSNamesystem: isPermissionEnabled=true | |
10/10/07 20:26:52 INFO common.Storage: Image file of size 96 saved in 0 seconds. | |
10/10/07 20:26:52 DEBUG namenode.FSNamesystem: Preallocating Edit log, current size 0 | |
10/10/07 20:26:52 DEBUG namenode.FSNamesystem: Edit log size is now 1049088 written 512 bytes at offset 1048576 | |
10/10/07 20:26:52 INFO common.Storage: Storage directory /home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/build/data/ce0b9c04-9d66-4da9-8018-a5a01f1464aa/dfs/name1 has been successfully formatted. | |
10/10/07 20:26:52 INFO common.Storage: Image file of size 96 saved in 0 seconds. | |
10/10/07 20:26:52 DEBUG namenode.FSNamesystem: Preallocating Edit log, current size 0 | |
10/10/07 20:26:52 DEBUG namenode.FSNamesystem: Edit log size is now 1049088 written 512 bytes at offset 1048576 | |
10/10/07 20:26:52 INFO common.Storage: Storage directory /home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/build/data/ce0b9c04-9d66-4da9-8018-a5a01f1464aa/dfs/name2 has been successfully formatted. | |
10/10/07 20:26:52 INFO metrics.RpcMetrics: Initializing RPC Metrics with hostName=NameNode, port=33323 | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = JMImplementation:type=MBeanServerDelegate | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=JMImplementation:type=MBeanServerDelegate | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object JMImplementation:type=MBeanServerDelegate | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered JMImplementation:type=MBeanServerDelegate | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.ClassLoadingImpl | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=ClassLoading | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=ClassLoading | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:type=ClassLoading | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=ClassLoading | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.MemoryImpl | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=Memory | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=Memory | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:type=Memory | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=Memory | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for com.sun.management.UnixOperatingSystem | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=OperatingSystem | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=OperatingSystem | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:type=OperatingSystem | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=OperatingSystem | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.RuntimeImpl | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=Runtime | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=Runtime | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:type=Runtime | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=Runtime | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.ThreadImpl | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=Threading | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=Threading | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:type=Threading | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=Threading | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.HotSpotDiagnostic | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = com.sun.management:type=HotSpotDiagnostic | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=com.sun.management:type=HotSpotDiagnostic | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object com.sun.management:type=HotSpotDiagnostic | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered com.sun.management:type=HotSpotDiagnostic | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.CompilationImpl | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=Compilation | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=Compilation | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:type=Compilation | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=Compilation | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.MemoryManagerImpl | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=MemoryManager,name=CodeCacheManager | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=MemoryManager,name=CodeCacheManager | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:name=CodeCacheManager,type=MemoryManager | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=MemoryManager,name=CodeCacheManager | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.GarbageCollectorImpl | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=GarbageCollector,name=PS Scavenge | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=GarbageCollector,name=PS Scavenge | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:name=PS Scavenge,type=GarbageCollector | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=GarbageCollector,name=PS Scavenge | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.GarbageCollectorImpl | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=GarbageCollector,name=PS MarkSweep | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=GarbageCollector,name=PS MarkSweep | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:name=PS MarkSweep,type=GarbageCollector | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=GarbageCollector,name=PS MarkSweep | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.MemoryPoolImpl | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=MemoryPool,name=Code Cache | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=MemoryPool,name=Code Cache | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:name=Code Cache,type=MemoryPool | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=MemoryPool,name=Code Cache | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.MemoryPoolImpl | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=MemoryPool,name=PS Eden Space | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=MemoryPool,name=PS Eden Space | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:name=PS Eden Space,type=MemoryPool | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=MemoryPool,name=PS Eden Space | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.MemoryPoolImpl | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=MemoryPool,name=PS Survivor Space | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=MemoryPool,name=PS Survivor Space | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:name=PS Survivor Space,type=MemoryPool | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=MemoryPool,name=PS Survivor Space | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.MemoryPoolImpl | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=MemoryPool,name=PS Old Gen | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=MemoryPool,name=PS Old Gen | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:name=PS Old Gen,type=MemoryPool | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=MemoryPool,name=PS Old Gen | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for sun.management.MemoryPoolImpl | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.lang:type=MemoryPool,name=PS Perm Gen | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.lang:type=MemoryPool,name=PS Perm Gen | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.lang:name=PS Perm Gen,type=MemoryPool | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.lang:type=MemoryPool,name=PS Perm Gen | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for java.util.logging.Logging | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = java.util.logging:type=Logging | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=java.util.logging:type=Logging | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object java.util.logging:type=Logging | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered java.util.logging:type=Logging | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = hadoop:service=NameNode,name=RpcActivityForPort33323 | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=hadoop:service=NameNode,name=RpcActivityForPort33323 | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object hadoop:name=RpcActivityForPort33323,service=NameNode | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered hadoop:service=NameNode,name=RpcActivityForPort33323 | |
10/10/07 20:26:52 INFO namenode.NameNode: Namenode up at: localhost/127.0.0.1:33323 | |
10/10/07 20:26:52 INFO jvm.JvmMetrics: Initializing JVM Metrics with processName=NameNode, sessionId=null | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = hadoop:service=NameNode,name=NameNodeActivity | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=hadoop:service=NameNode,name=NameNodeActivity | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object hadoop:name=NameNodeActivity,service=NameNode | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered hadoop:service=NameNode,name=NameNodeActivity | |
10/10/07 20:26:52 INFO metrics.NameNodeMetrics: Initializing NameNodeMeterics using context object:org.apache.hadoop.metrics.spi.NullContext | |
10/10/07 20:26:52 DEBUG security.UserGroupInformation: Unix Login: hudson,nogroup,admin,hudson | |
10/10/07 20:26:52 INFO namenode.FSNamesystem: fsOwner=hudson,nogroup,admin,hudson | |
10/10/07 20:26:52 INFO namenode.FSNamesystem: supergroup=supergroup | |
10/10/07 20:26:52 INFO namenode.FSNamesystem: isPermissionEnabled=true | |
10/10/07 20:26:52 INFO metrics.FSNamesystemMetrics: Initializing FSNamesystemMetrics using context object:org.apache.hadoop.metrics.spi.NullContext | |
Oct 7, 2010 8:26:52 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for org.apache.hadoop.hdfs.server.namenode.FSNamesystem | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = hadoop:service=NameNode,name=FSNamesystemState | |
Oct 7, 2010 8:26:52 PM Repository addMBean | |
FINER: name=hadoop:service=NameNode,name=FSNamesystemState | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object hadoop:name=FSNamesystemState,service=NameNode | |
Oct 7, 2010 8:26:52 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered hadoop:service=NameNode,name=FSNamesystemState | |
10/10/07 20:26:52 INFO namenode.FSNamesystem: Registered FSNamesystemStatusMBean | |
10/10/07 20:26:52 INFO common.Storage: Number of files = 1 | |
10/10/07 20:26:52 INFO common.Storage: Number of files under construction = 0 | |
10/10/07 20:26:52 INFO common.Storage: Image file of size 96 loaded in 0 seconds. | |
10/10/07 20:26:52 INFO common.Storage: Edits file /home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/build/data/ce0b9c04-9d66-4da9-8018-a5a01f1464aa/dfs/name1/current/edits of size 4 edits # 0 loaded in 0 seconds. | |
10/10/07 20:26:52 DEBUG common.Storage: numOpAdd = 0 numOpClose = 0 numOpDelete = 0 numOpRename = 0 numOpSetRepl = 0 numOpMkDir = 0 numOpSetPerm = 0 numOpSetOwner = 0 numOpSetGenStamp = 0 numOpTimes = 0 numOpOther = 0 | |
10/10/07 20:26:52 INFO common.Storage: Image file of size 96 saved in 0 seconds. | |
10/10/07 20:26:52 DEBUG namenode.FSNamesystem: Preallocating Edit log, current size 0 | |
10/10/07 20:26:52 DEBUG namenode.FSNamesystem: Edit log size is now 1049088 written 512 bytes at offset 1048576 | |
10/10/07 20:26:52 INFO common.Storage: Image file of size 96 saved in 0 seconds. | |
10/10/07 20:26:52 DEBUG namenode.FSNamesystem: Preallocating Edit log, current size 0 | |
10/10/07 20:26:52 DEBUG namenode.FSNamesystem: Edit log size is now 1049088 written 512 bytes at offset 1048576 | |
10/10/07 20:26:52 INFO common.Storage: Image file of size 96 saved in 0 seconds. | |
10/10/07 20:26:52 DEBUG namenode.FSNamesystem: Preallocating Edit log, current size 0 | |
10/10/07 20:26:52 DEBUG namenode.FSNamesystem: Edit log size is now 1049088 written 512 bytes at offset 1048576 | |
10/10/07 20:26:52 INFO common.Storage: Image file of size 96 saved in 0 seconds. | |
10/10/07 20:26:52 DEBUG namenode.FSNamesystem: Preallocating Edit log, current size 0 | |
10/10/07 20:26:52 DEBUG namenode.FSNamesystem: Edit log size is now 1049088 written 512 bytes at offset 1048576 | |
10/10/07 20:26:52 INFO namenode.FSNamesystem: Finished loading FSImage in 57 msecs | |
10/10/07 20:26:52 INFO namenode.FSNamesystem: Total number of blocks = 0 | |
10/10/07 20:26:52 INFO namenode.FSNamesystem: Number of invalid blocks = 0 | |
10/10/07 20:26:52 INFO namenode.FSNamesystem: Number of under-replicated blocks = 0 | |
10/10/07 20:26:52 INFO namenode.FSNamesystem: Number of over-replicated blocks = 0 | |
10/10/07 20:26:52 INFO hdfs.StateChange: STATE* Leaving safe mode after 0 secs. | |
10/10/07 20:26:52 INFO hdfs.StateChange: STATE* Network topology has 0 racks and 0 datanodes | |
10/10/07 20:26:52 INFO hdfs.StateChange: STATE* UnderReplicatedBlocks has 0 blocks | |
10/10/07 20:26:52 DEBUG namenode.FSNamesystem: PendingReplicationMonitor checking Q | |
10/10/07 20:26:52 INFO http.HttpServer: Port returned by webServer.getConnectors()[0].getLocalPort() before open() is -1. Opening the listener on 0 | |
10/10/07 20:26:52 INFO http.HttpServer: listener.getLocalPort() returned 55145 webServer.getConnectors()[0].getLocalPort() returned 55145 | |
10/10/07 20:26:52 INFO http.HttpServer: Jetty bound to port 55145 | |
10/10/07 20:26:53 INFO namenode.NameNode: Web-server up at: localhost:55145 | |
10/10/07 20:26:53 INFO ipc.Server: IPC Server Responder: starting | |
10/10/07 20:26:53 INFO ipc.Server: IPC Server handler 0 on 33323: starting | |
10/10/07 20:26:53 INFO ipc.Server: IPC Server listener on 33323: starting | |
10/10/07 20:26:53 INFO ipc.Server: IPC Server handler 1 on 33323: starting | |
10/10/07 20:26:53 INFO ipc.Server: IPC Server handler 2 on 33323: starting | |
10/10/07 20:26:53 INFO ipc.Server: IPC Server handler 4 on 33323: starting | |
10/10/07 20:26:53 INFO ipc.Server: IPC Server handler 3 on 33323: starting | |
10/10/07 20:26:53 INFO ipc.Server: IPC Server handler 5 on 33323: starting | |
10/10/07 20:26:53 INFO ipc.Server: IPC Server handler 7 on 33323: starting | |
10/10/07 20:26:53 INFO ipc.Server: IPC Server handler 6 on 33323: starting | |
10/10/07 20:26:53 INFO ipc.Server: IPC Server handler 8 on 33323: starting | |
10/10/07 20:26:53 INFO ipc.Server: IPC Server handler 9 on 33323: starting | |
10/10/07 20:26:53 DEBUG security.UserGroupInformation: Unix Login: hudson,nogroup,admin,hudson | |
10/10/07 20:26:53 DEBUG security.UserGroupInformation: Unix Login: hudson,nogroup,admin,hudson | |
10/10/07 20:26:53 DEBUG ipc.Client: The ping interval is60000ms. | |
10/10/07 20:26:53 DEBUG ipc.Client: Connecting to localhost/127.0.0.1:33323 | |
10/10/07 20:26:53 DEBUG ipc.Server: Server connection from 223.27.113.138:47987; # active connections: 1; # queued calls: 0 | |
10/10/07 20:26:53 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #0 | |
10/10/07 20:26:53 DEBUG ipc.Server: Successfully authorized org.apache.hadoop.ipc.VersionedProtocol-hudson,nogroup,admin,hudson | |
10/10/07 20:26:53 DEBUG ipc.Server: got #0 | |
10/10/07 20:26:53 DEBUG ipc.Server: IPC Server handler 0 on 33323: has #0 from 223.27.113.138:47987 | |
10/10/07 20:26:53 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson: starting, having connections 1 | |
10/10/07 20:26:53 DEBUG ipc.Server: Served: getProtocolVersion queueTime= 7 procesingTime= 0 | |
10/10/07 20:26:53 DEBUG ipc.Server: IPC Server Responder: responding to #0 from 223.27.113.138:47987 | |
10/10/07 20:26:53 DEBUG ipc.Server: IPC Server Responder: responding to #0 from 223.27.113.138:47987 Wrote 22 bytes. | |
10/10/07 20:26:53 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #0 | |
10/10/07 20:26:53 DEBUG ipc.RPC: Call: getProtocolVersion 36 | |
10/10/07 20:26:53 DEBUG conf.Configuration: java.io.IOException: config(config) | |
at org.apache.hadoop.conf.Configuration.<init>(Configuration.java:226) | |
at org.apache.hadoop.hdfs.MiniDFSCluster.startDataNodes(MiniDFSCluster.java:380) | |
at org.apache.hadoop.hdfs.MiniDFSCluster.<init>(MiniDFSCluster.java:279) | |
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniDFSCluster(HBaseTestingUtility.java:197) | |
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniCluster(HBaseTestingUtility.java:282) | |
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniCluster(HBaseTestingUtility.java:255) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:92) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
Starting DataNode 0 with dfs.data.dir: /home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/build/data/ce0b9c04-9d66-4da9-8018-a5a01f1464aa/dfs/data/data1,/home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/build/data/ce0b9c04-9d66-4da9-8018-a5a01f1464aa/dfs/data/data2 | |
10/10/07 20:26:53 DEBUG conf.Configuration: java.io.IOException: config(config) | |
at org.apache.hadoop.conf.Configuration.<init>(Configuration.java:226) | |
at org.apache.hadoop.hdfs.MiniDFSCluster.startDataNodes(MiniDFSCluster.java:411) | |
at org.apache.hadoop.hdfs.MiniDFSCluster.<init>(MiniDFSCluster.java:279) | |
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniDFSCluster(HBaseTestingUtility.java:197) | |
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniCluster(HBaseTestingUtility.java:282) | |
at org.apache.hadoop.hbase.HBaseTestingUtility.startMiniCluster(HBaseTestingUtility.java:255) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:92) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
10/10/07 20:26:53 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #1 | |
10/10/07 20:26:53 DEBUG ipc.Server: got #1 | |
10/10/07 20:26:53 DEBUG ipc.Server: IPC Server handler 1 on 33323: has #1 from 223.27.113.138:47987 | |
10/10/07 20:26:53 DEBUG ipc.Server: Served: getProtocolVersion queueTime= 0 procesingTime= 0 | |
10/10/07 20:26:53 DEBUG ipc.Server: IPC Server Responder: responding to #1 from 223.27.113.138:47987 | |
10/10/07 20:26:53 DEBUG ipc.Server: IPC Server Responder: responding to #1 from 223.27.113.138:47987 Wrote 22 bytes. | |
10/10/07 20:26:53 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #1 | |
10/10/07 20:26:53 DEBUG ipc.RPC: Call: getProtocolVersion 2 | |
10/10/07 20:26:53 DEBUG ipc.Client: Connecting to localhost/127.0.0.1:33323 | |
10/10/07 20:26:53 DEBUG ipc.Server: Server connection from 223.27.113.138:47988; # active connections: 2; # queued calls: 0 | |
10/10/07 20:26:53 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #2 | |
10/10/07 20:26:53 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson: starting, having connections 2 | |
10/10/07 20:26:53 DEBUG ipc.Server: Successfully authorized org.apache.hadoop.hdfs.server.protocol.DatanodeProtocol-hudson,nogroup,admin,hudson | |
10/10/07 20:26:53 DEBUG ipc.Server: got #2 | |
10/10/07 20:26:53 DEBUG ipc.Server: IPC Server handler 2 on 33323: has #2 from 223.27.113.138:47988 | |
10/10/07 20:26:53 DEBUG ipc.Server: Served: versionRequest queueTime= 0 procesingTime= 6 | |
10/10/07 20:26:53 DEBUG ipc.Server: IPC Server Responder: responding to #2 from 223.27.113.138:47988 | |
10/10/07 20:26:53 DEBUG ipc.Server: IPC Server Responder: responding to #2 from 223.27.113.138:47988 Wrote 144 bytes. | |
10/10/07 20:26:53 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #2 | |
10/10/07 20:26:53 DEBUG ipc.RPC: Call: versionRequest 8 | |
10/10/07 20:26:53 INFO common.Storage: Storage directory /home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/build/data/ce0b9c04-9d66-4da9-8018-a5a01f1464aa/dfs/data/data1 is not formatted. | |
10/10/07 20:26:53 INFO common.Storage: Formatting ... | |
10/10/07 20:26:53 INFO common.Storage: Storage directory /home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/build/data/ce0b9c04-9d66-4da9-8018-a5a01f1464aa/dfs/data/data2 is not formatted. | |
10/10/07 20:26:53 INFO common.Storage: Formatting ... | |
Oct 7, 2010 8:26:53 PM StandardMBean getMBeanInfo | |
FINER: Building MBeanInfo for org.apache.hadoop.hdfs.server.datanode.FSDataset | |
Oct 7, 2010 8:26:53 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = hadoop:service=DataNode,name=FSDatasetState-UndefinedStorageId-129836624 | |
Oct 7, 2010 8:26:53 PM Repository addMBean | |
FINER: name=hadoop:service=DataNode,name=FSDatasetState-UndefinedStorageId-129836624 | |
Oct 7, 2010 8:26:53 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object hadoop:name=FSDatasetState-UndefinedStorageId-129836624,service=DataNode | |
Oct 7, 2010 8:26:53 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered hadoop:service=DataNode,name=FSDatasetState-UndefinedStorageId-129836624 | |
10/10/07 20:26:53 INFO datanode.DataNode: Registered FSDatasetStatusMBean | |
10/10/07 20:26:53 INFO datanode.DataNode: Opened info server at 44473 | |
10/10/07 20:26:53 INFO datanode.DataNode: Balancing bandwith is 1048576 bytes/s | |
10/10/07 20:26:53 INFO http.HttpServer: Port returned by webServer.getConnectors()[0].getLocalPort() before open() is -1. Opening the listener on 0 | |
10/10/07 20:26:53 INFO http.HttpServer: listener.getLocalPort() returned 44625 webServer.getConnectors()[0].getLocalPort() returned 44625 | |
10/10/07 20:26:53 INFO http.HttpServer: Jetty bound to port 44625 | |
10/10/07 20:26:54 INFO jvm.JvmMetrics: Cannot initialize JVM Metrics with processName=DataNode, sessionId=null - already initialized | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = hadoop:service=DataNode,name=DataNodeActivity-UndefinedStorageId-94115792 | |
Oct 7, 2010 8:26:54 PM Repository addMBean | |
FINER: name=hadoop:service=DataNode,name=DataNodeActivity-UndefinedStorageId-94115792 | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object hadoop:name=DataNodeActivity-UndefinedStorageId-94115792,service=DataNode | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered hadoop:service=DataNode,name=DataNodeActivity-UndefinedStorageId-94115792 | |
10/10/07 20:26:54 INFO metrics.RpcMetrics: Initializing RPC Metrics with hostName=DataNode, port=50751 | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = hadoop:service=DataNode,name=RpcActivityForPort50751 | |
Oct 7, 2010 8:26:54 PM Repository addMBean | |
FINER: name=hadoop:service=DataNode,name=RpcActivityForPort50751 | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object hadoop:name=RpcActivityForPort50751,service=DataNode | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered hadoop:service=DataNode,name=RpcActivityForPort50751 | |
10/10/07 20:26:54 INFO ipc.Server: IPC Server Responder: starting | |
10/10/07 20:26:54 INFO ipc.Server: IPC Server listener on 50751: starting | |
10/10/07 20:26:54 INFO ipc.Server: IPC Server handler 0 on 50751: starting | |
10/10/07 20:26:54 INFO ipc.Server: IPC Server handler 2 on 50751: starting | |
10/10/07 20:26:54 INFO ipc.Server: IPC Server handler 1 on 50751: starting | |
10/10/07 20:26:54 INFO datanode.DataNode: dnRegistration = DatanodeRegistration(tools.smartitengineering.net:44473, storageID=, infoPort=44625, ipcPort=50751) | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #3 | |
10/10/07 20:26:54 DEBUG ipc.Server: got #3 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server handler 3 on 33323: has #3 from 223.27.113.138:47988 | |
10/10/07 20:26:54 INFO hdfs.StateChange: BLOCK* NameSystem.registerDatanode: node registration from 223.27.113.138:44473 storage DS-592771338-127.0.1.1-44473-1286515614067 | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: BLOCK* NameSystem.unprotectedAddDatanode: node 223.27.113.138:44473 is added to datanodeMap. | |
10/10/07 20:26:54 INFO net.NetworkTopology: Adding a new node: /default-rack/223.27.113.138:44473 | |
10/10/07 20:26:54 DEBUG net.NetworkTopology: NetworkTopology became: | |
Number of racks: 1 | |
Expected number of leaves:1 | |
/default-rack/223.27.113.138:44473 | |
10/10/07 20:26:54 DEBUG ipc.Server: Served: register queueTime= 0 procesingTime= 5 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #3 from 223.27.113.138:47988 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #3 from 223.27.113.138:47988 Wrote 216 bytes. | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #3 | |
10/10/07 20:26:54 DEBUG ipc.RPC: Call: register 7 | |
10/10/07 20:26:54 INFO datanode.DataNode: New storage id DS-592771338-127.0.1.1-44473-1286515614067 is assigned to data-node 223.27.113.138:44473 | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #4 | |
10/10/07 20:26:54 DEBUG ipc.Server: got #4 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server handler 5 on 33323: has #4 from 223.27.113.138:47987 | |
10/10/07 20:26:54 DEBUG ipc.Server: Served: getProtocolVersion queueTime= 0 procesingTime= 0 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #4 from 223.27.113.138:47987 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #4 from 223.27.113.138:47987 Wrote 22 bytes. | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #4 | |
10/10/07 20:26:54 INFO datanode.DataNode: DatanodeRegistration(223.27.113.138:44473, storageID=DS-592771338-127.0.1.1-44473-1286515614067, infoPort=44625, ipcPort=50751)In DataNode.run, data = FSDataset{dirpath='/home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/build/data/ce0b9c04-9d66-4da9-8018-a5a01f1464aa/dfs/data/data1/current,/home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/build/data/ce0b9c04-9d66-4da9-8018-a5a01f1464aa/dfs/data/data2/current'} | |
10/10/07 20:26:54 DEBUG ipc.RPC: Call: getProtocolVersion 2 | |
10/10/07 20:26:54 INFO datanode.DataNode: using BLOCKREPORT_INTERVAL of 3600000msec Initial delay: 0msec | |
10/10/07 20:26:54 DEBUG ipc.Client: Connecting to localhost/127.0.0.1:33323 | |
10/10/07 20:26:54 DEBUG ipc.Server: Server connection from 223.27.113.138:47989; # active connections: 3; # queued calls: 0 | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #5 | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson: starting, having connections 3 | |
10/10/07 20:26:54 DEBUG ipc.Server: Successfully authorized org.apache.hadoop.hdfs.protocol.ClientProtocol-hudson,nogroup,admin,hudson | |
10/10/07 20:26:54 DEBUG ipc.Server: got #5 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server handler 4 on 33323: has #5 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG security.UserGroupInformation: ugi=hudson,nogroup,admin,hudson | |
10/10/07 20:26:54 DEBUG ipc.Server: Served: getDatanodeReport queueTime= 3 procesingTime= 3 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #5 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #5 from 223.27.113.138:47989 Wrote 309 bytes. | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #5 | |
10/10/07 20:26:54 DEBUG ipc.RPC: Call: getDatanodeReport 24 | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #6 | |
10/10/07 20:26:54 DEBUG ipc.Server: got #6 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server handler 7 on 33323: has #6 from 223.27.113.138:47988 | |
10/10/07 20:26:54 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 0 procesingTime= 0 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #6 from 223.27.113.138:47988 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #6 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #6 | |
10/10/07 20:26:54 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #7 | |
10/10/07 20:26:54 DEBUG ipc.Server: got #7 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server handler 6 on 33323: has #7 from 223.27.113.138:47988 | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: *BLOCK* NameNode.blockReport: from 223.27.113.138:44473 0 blocks | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: BLOCK* NameSystem.processReport: from 223.27.113.138:44473 0 blocks | |
10/10/07 20:26:54 DEBUG ipc.Server: Served: blockReport queueTime= 0 procesingTime= 2 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #7 from 223.27.113.138:47988 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #7 from 223.27.113.138:47988 Wrote 129 bytes. | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #7 | |
10/10/07 20:26:54 DEBUG ipc.RPC: Call: blockReport 4 | |
10/10/07 20:26:54 INFO datanode.DataNode: BlockReport of 0 blocks got processed in 6 msecs | |
10/10/07 20:26:54 INFO datanode.DataNode: Starting Periodic block scanner. | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #8 | |
10/10/07 20:26:54 DEBUG ipc.Server: got #8 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server handler 8 on 33323: has #8 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG security.UserGroupInformation: ugi=hudson,nogroup,admin,hudson | |
10/10/07 20:26:54 DEBUG ipc.Server: Served: getDatanodeReport queueTime= 0 procesingTime= 1 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #8 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #8 from 223.27.113.138:47989 Wrote 309 bytes. | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #8 | |
10/10/07 20:26:54 DEBUG ipc.RPC: Call: getDatanodeReport 4 | |
10/10/07 20:26:54 DEBUG security.UserGroupInformation: ugi=hudson,nogroup,admin,hudson | |
10/10/07 20:26:54 DEBUG security.UserGroupInformation: ugi=hudson,nogroup,admin,hudson | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:zookeeper.version=3.3.1-942149, built on 05/07/2010 17:14 GMT | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:host.name=tools.smartitengineering.net | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:java.version=1.6.0_20 | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:java.vendor=Sun Microsystems Inc. | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:java.home=/opt/jdk1.6.0_20/jre | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:java.class.path=/home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/test-classes:/home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/classes:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/smart-cms-client-api/0.1-SNAPSHOT/smart-cms-client-api-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-core/1.0/abdera-core-1.0.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-i18n/1.0/abdera-i18n-1.0.jar:/home/hudson/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/home/hudson/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/home/hudson/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/webservice-common/0.1-SNAPSHOT/webservice-common-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar:/home/hudson/.m2/repository/org/codehaus/jackson/jackson-jaxrs/1.5.3/jackson-jaxrs-1.5.3.jar:/home/hudson/.m2/repository/org/codehaus/jackson/jackson-core-asl/1.5.3/jackson-core-asl-1.5.3.jar:/home/hudson/.m2/repository/org/codehaus/jackson/jackson-mapper-asl/1.5.3/jackson-mapper-asl-1.5.3.jar:/home/hudson/.m2/repository/commons-io/commons-io/1.4/commons-io-1.4.jar:/home/hudson/.m2/repository/commons-lang/commons-lang/2.5/commons-lang-2.5.jar:/home/hudson/.m2/repository/org/slf4j/slf4j-api/1.5.8/slf4j-api-1.5.8.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/rest/generic-client/0.2-SNAPSHOT/generic-client-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/sun/jersey/jersey-client/1.3/jersey-client-1.3.jar:/home/hudson/.m2/repository/com/sun/jersey/jersey-core/1.3/jersey-core-1.3.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/smart-bean-util/0.2-SNAPSHOT/smart-bean-util-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/google/inject/guice/2.0/guice-2.0.jar:/home/hudson/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/rest/jersey-cache-client/0.2-SNAPSHOT/jersey-cache-client-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/org/codehaus/httpcache4j/httpcache4j-core/3.1/httpcache4j-core-3.1.jar:/home/hudson/.m2/repository/org/codehaus/httpcache4j/httpcache4j-storage-api/3.1/httpcache4j-storage-api-3.1.jar:/home/hudson/.m2/repository/org/codehaus/httpcache4j/httpcache4j-api/3.1/httpcache4j-api-3.1.jar:/home/hudson/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/home/hudson/.m2/repository/joda-time/joda-time/1.5.2/joda-time-1.5.2.jar:/home/hudson/.m2/repository/org/codehaus/httpcache4j/resolvers/resolvers-commons-httpclient/3.1/resolvers-commons-httpclient-3.1.jar:/home/hudson/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/rest/atom-client/0.2-SNAPSHOT/atom-client-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-extensions-opensearch/1.0/abdera-extensions-opensearch-1.0.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-client/1.0/abdera-client-1.0.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-parser/1.0/abdera-parser-1.0.jar:/home/hudson/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.5/axiom-impl-1.2.5.jar:/home/hudson/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.5/axiom-api-1.2.5.jar:/home/hudson/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/home/hudson/.m2/repository/xerces/xercesImpl/2.6.2/xercesImpl-2.6.2.jar:/home/hudson/.m2/repository/xml-apis/xml-apis/1.3.02/xml-apis-1.3.02.jar:/home/hudson/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/home/hudson/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-server/1.0/abdera-server-1.0.jar:/home/hudson/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/home/hudson/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/home/hudson/.m2/repository/com/sun/jersey/contribs/jersey-atom-abdera/1.3/jersey-atom-abdera-1.3.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-extensions-json/1.0/abdera-extensions-json-1.0.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-extensions-main/1.0/abdera-extensions-main-1.0.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-extensions-html/1.0/abdera-extensions-html-1.0.jar:/home/hudson/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/home/hudson/.m2/repository/org/slf4j/slf4j-jdk14/1.5.8/slf4j-jdk14-1.5.8.jar:/home/hudson/.m2/repository/junit/junit/4.8.1/junit-4.8.1.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-webapp/7.1.5.v20100705/jetty-webapp-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-xml/7.1.5.v20100705/jetty-xml-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-util/7.1.5.v20100705/jetty-util-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-servlet/7.1.5.v20100705/jetty-servlet-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-security/7.1.5.v20100705/jetty-security-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-server/7.1.5.v20100705/jetty-server-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-continuation/7.1.5.v20100705/jetty-continuation-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-http/7.1.5.v20100705/jetty-http-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-io/7.1.5.v20100705/jetty-io-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/mortbay/jetty/jsp-2.1-glassfish/9.1.1.B60.25.p2/jsp-2.1-glassfish-9.1.1.B60.25.p2.jar:/home/hudson/.m2/repository/org/eclipse/jdt/core/3.1.1/core-3.1.1.jar:/home/hudson/.m2/repository/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.jar:/home/hudson/.m2/repository/ant/ant/1.6.5/ant-1.6.5.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/smart-bean-guice-util/0.2-SNAPSHOT/smart-bean-guice-util-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/webservice-resources/0.1-SNAPSHOT/webservice-resources-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/com/sun/jersey/jersey-server/1.3/jersey-server-1.3.jar:/home/hudson/.m2/repository/asm/asm/3.1/asm-3.1.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/rest/atom-server/0.2-SNAPSHOT/atom-server-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/rest/server/0.2-SNAPSHOT/server-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/opensearch/jaxrs/0.2-SNAPSHOT/jaxrs-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/opensearch/api/0.2-SNAPSHOT/api-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/opensearch/impl/0.2-SNAPSHOT/impl-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/opensearch/dom-io/0.2-SNAPSHOT/dom-io-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/xom/xom/1.2.5/xom-1.2.5.jar:/home/hudson/.m2/repository/xalan/xalan/2.7.0/xalan-2.7.0.jar:/home/hudson/.m2/repository/org/codehaus/jackson/jackson-core-lgpl/1.5.3/jackson-core-lgpl-1.5.3.jar:/home/hudson/.m2/repository/org/codehaus/jackson/jackson-mapper-lgpl/1.5.3/jackson-mapper-lgpl-1.5.3.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/content-api/0.1-SNAPSHOT/content-api-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-dao-queryparam/0.4-SNAPSHOT/smart-dao-queryparam-0.4-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-dao/smart-hbase-dao-spi/0.4-SNAPSHOT/smart-hbase-dao-spi-0.4-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/api-spi-guice-binder/0.1-SNAPSHOT/api-spi-guice-binder-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/content-spi-impl/0.1-SNAPSHOT/content-spi-impl-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/content-spi/0.1-SNAPSHOT/content-spi-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-dao/smart-hbase-dao/0.4-SNAPSHOT/smart-hbase-dao-0.4-SNAPSHOT.jar:/home/hudson/.m2/repository/org/apache/hbase/hbase/0.89.0-SNAPSHOT/hbase-0.89.0-SNAPSHOT.jar:/home/hudson/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/home/hudson/.m2/repository/log4j/log4j/1.2.15/log4j-1.2.15.jar:/home/hudson/.m2/repository/org/apache/thrift/thrift/0.2.0/thrift-0.2.0.jar:/home/hudson/.m2/repository/com/google/guava/guava/r05/guava-r05.jar:/home/hudson/.m2/repository/org/apache/hadoop/hadoop-core/0.20.3-append-r964955-1240/hadoop-core-0.20.3-append-r964955-1240.jar:/home/hudson/.m2/repository/xmlenc/xmlenc/0.52/xmlenc-0.52.jar:/home/hudson/.m2/repository/commons-net/commons-net/1.4.1/commons-net-1.4.1.jar:/home/hudson/.m2/repository/oro/oro/2.0.8/oro-2.0.8.jar:/home/hudson/.m2/repository/org/mortbay/jetty/jetty/6.1.24/jetty-6.1.24.jar:/home/hudson/.m2/repository/org/mortbay/jetty/jetty-util/6.1.24/jetty-util-6.1.24.jar:/home/hudson/.m2/repository/org/mortbay/jetty/servlet-api-2.5/6.1.14/servlet-api-2.5-6.1.14.jar:/home/hudson/.m2/repository/tomcat/jasper-runtime/5.5.23/jasper-runtime-5.5.23.jar:/home/hudson/.m2/repository/tomcat/jasper-compiler/5.5.23/jasper-compiler-5.5.23.jar:/home/hudson/.m2/repository/org/mortbay/jetty/jsp-api-2.1/6.1.14/jsp-api-2.1-6.1.14.jar:/home/hudson/.m2/repository/org/mortbay/jetty/jsp-2.1/6.1.14/jsp-2.1-6.1.14.jar:/home/hudson/.m2/repository/commons-el/commons-el/1.0/commons-el-1.0.jar:/home/hudson/.m2/repository/net/java/dev/jets3t/jets3t/0.7.1/jets3t-0.7.1.jar:/home/hudson/.m2/repository/net/sf/kosmosfs/kfs/0.3/kfs-0.3.jar:/home/hudson/.m2/repository/hsqldb/hsqldb/1.8.0.10/hsqldb-1.8.0.10.jar:/home/hudson/.m2/repository/org/apache/hadoop/zookeeper/3.3.1/zookeeper-3.3.1.jar:/home/hudson/.m2/repository/jline/jline/0.9.94/jline-0.9.94.jar:/home/hudson/.m2/repository/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar:/home/hudson/.m2/repository/javax/servlet/jsp-api/2.0/jsp-api-2.0.jar:/home/hudson/.m2/repository/org/jruby/jruby-complete/1.5.1/jruby-complete-1.5.1.jar:/home/hudson/.m2/repository/com/google/protobuf/protobuf-java/2.3.0/protobuf-java-2.3.0.jar:/home/hudson/.m2/repository/com/sun/jersey/jersey-json/1.3/jersey-json-1.3.jar:/home/hudson/.m2/repository/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar:/home/hudson/.m2/repository/stax/stax-api/1.0.1/stax-api-1.0.1.jar:/home/hudson/.m2/repository/com/sun/xml/bind/jaxb-impl/2.1.12/jaxb-impl-2.1.12.jar:/home/hudson/.m2/repository/javax/xml/bind/jaxb-api/2.1/jaxb-api-2.1.jar:/home/hudson/.m2/repository/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar:/home/hudson/.m2/repository/org/apache/hadoop/avro/1.3.2/avro-1.3.2.jar:/home/hudson/.m2/repository/com/thoughtworks/paranamer/paranamer/2.2/paranamer-2.2.jar:/home/hudson/.m2/repository/com/thoughtworks/paranamer/paranamer-ant/2.2/paranamer-ant-2.2.jar:/home/hudson/.m2/repository/com/thoughtworks/paranamer/paranamer-generator/2.2/paranamer-generator-2.2.jar:/home/hudson/.m2/repository/com/thoughtworks/qdox/qdox/1.10.1/qdox-1.10.1.jar:/home/hudson/.m2/repository/org/apache/ant/ant/1.7.1/ant-1.7.1.jar:/home/hudson/.m2/repository/org/apache/ant/ant-launcher/1.7.1/ant-launcher-1.7.1.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-abstract-dao/0.4-SNAPSHOT/smart-abstract-dao-0.4-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-domain/0.4-SNAPSHOT/smart-domain-0.4-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/content-api-impl/0.1-SNAPSHOT/content-api-impl-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/com/google/inject/extensions/guice-multibindings/2.0/guice-multibindings-2.0.jar:/home/hudson/.m2/repository/org/apache/hbase/hbase/0.89.0-SNAPSHOT/hbase-0.89.0-SNAPSHOT-tests.jar:/home/hudson/.m2/repository/org/apache/hadoop/hadoop-test/0.20.3-append-r964955-1240/hadoop-test-0.20.3-append-r964955-1240.jar:/home/hudson/.m2/repository/org/apache/ftpserver/ftplet-api/1.0.0/ftplet-api-1.0.0.jar:/home/hudson/.m2/repository/org/apache/mina/mina-core/2.0.0-M5/mina-core-2.0.0-M5.jar:/home/hudson/.m2/repository/org/apache/ftpserver/ftpserver-core/1.0.0/ftpserver-core-1.0.0.jar:/home/hudson/.m2/repository/org/apache/ftpserver/ftpserver-deprecated/1.0.0-M2/ftpserver-deprecated-1.0.0-M2.jar: | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:java.library.path=/opt/jdk1.6.0_20/jre/lib/i386/server:/opt/jdk1.6.0_20/jre/lib/i386:/opt/jdk1.6.0_20/jre/../lib/i386:/usr/java/packages/lib/i386:/lib:/usr/lib | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:java.io.tmpdir=/tmp | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:java.compiler=<NA> | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:os.name=Linux | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:os.arch=i386 | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:os.version=2.6.32-24-generic-pae | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:user.name=hudson | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:user.home=/home/hudson | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Server environment:user.dir=/home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl | |
10/10/07 20:26:54 INFO server.ZooKeeperServer: Created server with tickTime 2000 minSessionTimeout 4000 maxSessionTimeout 40000 datadir /home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/build/data/ce0b9c04-9d66-4da9-8018-a5a01f1464aa/zookeeper/version-2 snapdir /home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/build/data/ce0b9c04-9d66-4da9-8018-a5a01f1464aa/zookeeper/version-2 | |
10/10/07 20:26:54 INFO server.NIOServerCnxn: binding to port 0.0.0.0/0.0.0.0:21810 | |
10/10/07 20:26:54 INFO persistence.FileTxnSnapLog: Snapshotting: 0 | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = org.apache.ZooKeeperService:name0=StandaloneServer_port-1 | |
Oct 7, 2010 8:26:54 PM Repository addMBean | |
FINER: name=org.apache.ZooKeeperService:name0=StandaloneServer_port-1 | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object org.apache.ZooKeeperService:name0=StandaloneServer_port-1 | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered org.apache.ZooKeeperService:name0=StandaloneServer_port-1 | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=InMemoryDataTree | |
Oct 7, 2010 8:26:54 PM Repository addMBean | |
FINER: name=org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=InMemoryDataTree | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=InMemoryDataTree | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=InMemoryDataTree | |
10/10/07 20:26:54 INFO server.NIOServerCnxn: Accepted socket connection from /223.27.113.138:58060 | |
10/10/07 20:26:54 INFO server.NIOServerCnxn: Processing stat command from /223.27.113.138:58060 | |
10/10/07 20:26:54 INFO server.NIOServerCnxn: Stat command output | |
10/10/07 20:26:54 DEBUG hdfs.DFSClient: /user/hudson: masked=rwxr-xr-x | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #9 | |
10/10/07 20:26:54 DEBUG ipc.Server: got #9 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server handler 9 on 33323: has #9 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: *DIR* NameNode.mkdirs: /user/hudson | |
10/10/07 20:26:54 INFO server.NIOServerCnxn: Closed socket connection for client /223.27.113.138:58060 (no session established for client) | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: DIR* NameSystem.mkdirs: /user/hudson | |
10/10/07 20:26:54 DEBUG security.UserGroupInformation: ugi=hudson,nogroup,admin,hudson | |
10/10/07 20:26:54 DEBUG security.UserGroupInformation: ugi=hudson,nogroup,admin,hudson | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: DIR* FSDirectory.mkdirs: created directory /user | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: DIR* FSDirectory.mkdirs: created directory /user/hudson | |
10/10/07 20:26:54 DEBUG namenode.FSNamesystem: Preallocating Edit log, current size 4 | |
10/10/07 20:26:54 DEBUG namenode.FSNamesystem: Edit log size is now 1049092 written 512 bytes at offset 1048580 | |
10/10/07 20:26:54 DEBUG namenode.FSNamesystem: Preallocating Edit log, current size 4 | |
10/10/07 20:26:54 DEBUG namenode.FSNamesystem: Edit log size is now 1049092 written 512 bytes at offset 1048580 | |
10/10/07 20:26:54 INFO FSNamesystem.audit: ugi=hudson,nogroup,admin,hudson ip=/223.27.113.138 cmd=mkdirs src=/user/hudson dst=null perm=hudson:supergroup:rwxr-xr-x | |
10/10/07 20:26:54 DEBUG ipc.Server: Served: mkdirs queueTime= 1 procesingTime= 12 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #9 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #9 | |
10/10/07 20:26:54 DEBUG ipc.RPC: Call: mkdirs 13 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #9 from 223.27.113.138:47989 Wrote 18 bytes. | |
10/10/07 20:26:54 DEBUG hdfs.DFSClient: /user/hudson/hbase.version: masked=rwxr-xr-x | |
10/10/07 20:26:54 DEBUG hdfs.DFSClient: computePacketChunkSize: src=/user/hudson/hbase.version, chunkSize=516, chunksPerPacket=127, packetSize=65557 | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #10 | |
10/10/07 20:26:54 DEBUG ipc.Server: got #10 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server handler 0 on 33323: has #10 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: *DIR* NameNode.create: file /user/hudson/hbase.version for DFSClient_1847051120 at 223.27.113.138 | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: DIR* NameSystem.startFile: src=/user/hudson/hbase.version, holder=DFSClient_1847051120, clientMachine=223.27.113.138, replication=1, overwrite=true, append=false | |
10/10/07 20:26:54 DEBUG security.UserGroupInformation: ugi=hudson,nogroup,admin,hudson | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: DIR* FSDirectory.addFile: /user/hudson/hbase.version is added to the file system | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: DIR* NameSystem.startFile: add /user/hudson/hbase.version to namespace for DFSClient_1847051120 | |
10/10/07 20:26:54 INFO FSNamesystem.audit: ugi=hudson,nogroup,admin,hudson ip=/223.27.113.138 cmd=create src=/user/hudson/hbase.version dst=null perm=hudson:supergroup:rw-r--r-- | |
10/10/07 20:26:54 DEBUG ipc.Server: Served: create queueTime= 1 procesingTime= 7 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #10 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #10 | |
10/10/07 20:26:54 DEBUG ipc.RPC: Call: create 10 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #10 from 223.27.113.138:47989 Wrote 95 bytes. | |
10/10/07 20:26:54 DEBUG hdfs.DFSClient: DFSClient writeChunk allocating new packet seqno=0, src=/user/hudson/hbase.version, packetSize=65557, chunksPerPacket=127, bytesCurBlock=0 | |
10/10/07 20:26:54 DEBUG hdfs.DFSClient: Allocating new block | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #12 | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #11 | |
10/10/07 20:26:54 DEBUG ipc.Server: got #12 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server handler 1 on 33323: has #12 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: *BLOCK* NameNode.addBlock: file /user/hudson/hbase.version for DFSClient_1847051120 | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: BLOCK* NameSystem.getAdditionalBlock: file /user/hudson/hbase.version for DFSClient_1847051120 | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: DIR* FSDirectory.addFile: /user/hudson/hbase.version with blk_5548980848112233445_1001 block is added to the in-memory file system | |
10/10/07 20:26:54 INFO hdfs.StateChange: BLOCK* NameSystem.allocateBlock: /user/hudson/hbase.version. blk_5548980848112233445_1001 | |
10/10/07 20:26:54 DEBUG ipc.Server: Served: addBlock queueTime= 1 procesingTime= 2 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #12 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #12 from 223.27.113.138:47989 Wrote 293 bytes. | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #12 | |
10/10/07 20:26:54 DEBUG ipc.RPC: Call: addBlock 4 | |
10/10/07 20:26:54 DEBUG hdfs.DFSClient: pipeline = 223.27.113.138:44473 | |
10/10/07 20:26:54 DEBUG ipc.Server: got #11 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server handler 2 on 33323: has #11 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG ipc.Server: Served: renewLease queueTime= 1 procesingTime= 0 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #11 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #11 from 223.27.113.138:47989 Wrote 95 bytes. | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #11 | |
10/10/07 20:26:54 DEBUG hdfs.DFSClient: Connecting to 223.27.113.138:44473 | |
10/10/07 20:26:54 INFO hdfs.DFSClient: Exception in createBlockOutputStream java.net.ConnectException: Connection refused | |
10/10/07 20:26:54 INFO hdfs.DFSClient: Abandoning block blk_5548980848112233445_1001 | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #13 | |
10/10/07 20:26:54 DEBUG ipc.Server: got #13 | |
10/10/07 20:26:54 DEBUG ipc.RPC: Call: renewLease 8 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server handler 3 on 33323: has #13 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: *BLOCK* NameNode.abandonBlock: blk_5548980848112233445_1001 of file /user/hudson/hbase.version | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: BLOCK* NameSystem.abandonBlock: blk_5548980848112233445_1001of file /user/hudson/hbase.version | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: DIR* FSDirectory.addFile: /user/hudson/hbase.version with blk_5548980848112233445_1001 block is added to the file system | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: BLOCK* NameSystem.abandonBlock: blk_5548980848112233445_1001 is removed from pendingCreates | |
10/10/07 20:26:54 DEBUG ipc.Server: Served: abandonBlock queueTime= 1 procesingTime= 0 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #13 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #13 from 223.27.113.138:47989 Wrote 95 bytes. | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #13 | |
10/10/07 20:26:54 DEBUG ipc.RPC: Call: abandonBlock 3 | |
10/10/07 20:26:54 INFO hdfs.DFSClient: Excluding datanode 223.27.113.138:44473 | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #14 | |
10/10/07 20:26:54 DEBUG ipc.Server: got #14 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server handler 5 on 33323: has #14 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: *BLOCK* NameNode.addBlock: file /user/hudson/hbase.version for DFSClient_1847051120 | |
10/10/07 20:26:54 DEBUG hdfs.StateChange: BLOCK* NameSystem.getAdditionalBlock: file /user/hudson/hbase.version for DFSClient_1847051120 | |
10/10/07 20:26:54 WARN namenode.FSNamesystem: Not able to place enough replicas, still in need of 1 | |
10/10/07 20:26:54 INFO ipc.Server: IPC Server handler 5 on 33323, call addBlock(/user/hudson/hbase.version, DFSClient_1847051120, [Lorg.apache.hadoop.hdfs.protocol.DatanodeInfo;@6ffd79) from 223.27.113.138:47989: error: java.io.IOException: File /user/hudson/hbase.version could only be replicated to 0 nodes, instead of 1 | |
java.io.IOException: File /user/hudson/hbase.version could only be replicated to 0 nodes, instead of 1 | |
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.getAdditionalBlock(FSNamesystem.java:1310) | |
at org.apache.hadoop.hdfs.server.namenode.NameNode.addBlock(NameNode.java:443) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.hadoop.ipc.RPC$Server.call(RPC.java:508) | |
at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:961) | |
at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:957) | |
at java.security.AccessController.doPrivileged(Native Method) | |
at javax.security.auth.Subject.doAs(Subject.java:396) | |
at org.apache.hadoop.ipc.Server$Handler.run(Server.java:955) | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #14 from 223.27.113.138:47989 | |
10/10/07 20:26:54 DEBUG ipc.Server: IPC Server Responder: responding to #14 from 223.27.113.138:47989 Wrote 970 bytes. | |
10/10/07 20:26:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #14 | |
10/10/07 20:26:54 WARN hdfs.DFSClient: DataStreamer Exception: org.apache.hadoop.ipc.RemoteException: java.io.IOException: File /user/hudson/hbase.version could only be replicated to 0 nodes, instead of 1 | |
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.getAdditionalBlock(FSNamesystem.java:1310) | |
at org.apache.hadoop.hdfs.server.namenode.NameNode.addBlock(NameNode.java:443) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.hadoop.ipc.RPC$Server.call(RPC.java:508) | |
at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:961) | |
at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:957) | |
at java.security.AccessController.doPrivileged(Native Method) | |
at javax.security.auth.Subject.doAs(Subject.java:396) | |
at org.apache.hadoop.ipc.Server$Handler.run(Server.java:955) | |
at org.apache.hadoop.ipc.Client.call(Client.java:740) | |
at org.apache.hadoop.ipc.RPC$Invoker.invoke(RPC.java:220) | |
at $Proxy6.addBlock(Unknown Source) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.hadoop.io.retry.RetryInvocationHandler.invokeMethod(RetryInvocationHandler.java:82) | |
at org.apache.hadoop.io.retry.RetryInvocationHandler.invoke(RetryInvocationHandler.java:59) | |
at $Proxy6.addBlock(Unknown Source) | |
at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream.locateFollowingBlock(DFSClient.java:3010) | |
at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream.nextBlockOutputStream(DFSClient.java:2885) | |
at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream.access$1900(DFSClient.java:2154) | |
at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream$DataStreamer.run(DFSClient.java:2343) | |
10/10/07 20:26:54 WARN hdfs.DFSClient: Error Recovery for block blk_5548980848112233445_1001 bad datanode[0] nodes == null | |
10/10/07 20:26:54 WARN hdfs.DFSClient: Could not get block locations. Source file "/user/hudson/hbase.version" - Aborting... | |
Oct 7, 2010 8:26:54 PM com.smartitengineering.cms.client.impl.AppTest globalSetup | |
SEVERE: java.io.IOException: File /user/hudson/hbase.version could only be replicated to 0 nodes, instead of 1 | |
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.getAdditionalBlock(FSNamesystem.java:1310) | |
at org.apache.hadoop.hdfs.server.namenode.NameNode.addBlock(NameNode.java:443) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.hadoop.ipc.RPC$Server.call(RPC.java:508) | |
at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:961) | |
at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:957) | |
at java.security.AccessController.doPrivileged(Native Method) | |
at javax.security.auth.Subject.doAs(Subject.java:396) | |
at org.apache.hadoop.ipc.Server$Handler.run(Server.java:955) | |
org.apache.hadoop.ipc.RemoteException: java.io.IOException: File /user/hudson/hbase.version could only be replicated to 0 nodes, instead of 1 | |
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.getAdditionalBlock(FSNamesystem.java:1310) | |
at org.apache.hadoop.hdfs.server.namenode.NameNode.addBlock(NameNode.java:443) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.hadoop.ipc.RPC$Server.call(RPC.java:508) | |
at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:961) | |
at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:957) | |
at java.security.AccessController.doPrivileged(Native Method) | |
at javax.security.auth.Subject.doAs(Subject.java:396) | |
at org.apache.hadoop.ipc.Server$Handler.run(Server.java:955) | |
at org.apache.hadoop.ipc.Client.call(Client.java:740) | |
at org.apache.hadoop.ipc.RPC$Invoker.invoke(RPC.java:220) | |
at $Proxy6.addBlock(Unknown Source) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.hadoop.io.retry.RetryInvocationHandler.invokeMethod(RetryInvocationHandler.java:82) | |
at org.apache.hadoop.io.retry.RetryInvocationHandler.invoke(RetryInvocationHandler.java:59) | |
at $Proxy6.addBlock(Unknown Source) | |
at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream.locateFollowingBlock(DFSClient.java:3010) | |
at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream.nextBlockOutputStream(DFSClient.java:2885) | |
at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream.access$1900(DFSClient.java:2154) | |
at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream$DataStreamer.run(DFSClient.java:2343) | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeperWrapper: Reconnecting to zookeeper | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:zookeeper.version=3.3.1-942149, built on 05/07/2010 17:14 GMT | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:host.name=tools.smartitengineering.net | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:java.version=1.6.0_20 | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:java.vendor=Sun Microsystems Inc. | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:java.home=/opt/jdk1.6.0_20/jre | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:java.class.path=/home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/test-classes:/home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/classes:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/smart-cms-client-api/0.1-SNAPSHOT/smart-cms-client-api-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-core/1.0/abdera-core-1.0.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-i18n/1.0/abdera-i18n-1.0.jar:/home/hudson/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/home/hudson/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/home/hudson/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/webservice-common/0.1-SNAPSHOT/webservice-common-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar:/home/hudson/.m2/repository/org/codehaus/jackson/jackson-jaxrs/1.5.3/jackson-jaxrs-1.5.3.jar:/home/hudson/.m2/repository/org/codehaus/jackson/jackson-core-asl/1.5.3/jackson-core-asl-1.5.3.jar:/home/hudson/.m2/repository/org/codehaus/jackson/jackson-mapper-asl/1.5.3/jackson-mapper-asl-1.5.3.jar:/home/hudson/.m2/repository/commons-io/commons-io/1.4/commons-io-1.4.jar:/home/hudson/.m2/repository/commons-lang/commons-lang/2.5/commons-lang-2.5.jar:/home/hudson/.m2/repository/org/slf4j/slf4j-api/1.5.8/slf4j-api-1.5.8.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/rest/generic-client/0.2-SNAPSHOT/generic-client-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/sun/jersey/jersey-client/1.3/jersey-client-1.3.jar:/home/hudson/.m2/repository/com/sun/jersey/jersey-core/1.3/jersey-core-1.3.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/smart-bean-util/0.2-SNAPSHOT/smart-bean-util-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/google/inject/guice/2.0/guice-2.0.jar:/home/hudson/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/rest/jersey-cache-client/0.2-SNAPSHOT/jersey-cache-client-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/org/codehaus/httpcache4j/httpcache4j-core/3.1/httpcache4j-core-3.1.jar:/home/hudson/.m2/repository/org/codehaus/httpcache4j/httpcache4j-storage-api/3.1/httpcache4j-storage-api-3.1.jar:/home/hudson/.m2/repository/org/codehaus/httpcache4j/httpcache4j-api/3.1/httpcache4j-api-3.1.jar:/home/hudson/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/home/hudson/.m2/repository/joda-time/joda-time/1.5.2/joda-time-1.5.2.jar:/home/hudson/.m2/repository/org/codehaus/httpcache4j/resolvers/resolvers-commons-httpclient/3.1/resolvers-commons-httpclient-3.1.jar:/home/hudson/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/rest/atom-client/0.2-SNAPSHOT/atom-client-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-extensions-opensearch/1.0/abdera-extensions-opensearch-1.0.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-client/1.0/abdera-client-1.0.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-parser/1.0/abdera-parser-1.0.jar:/home/hudson/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.5/axiom-impl-1.2.5.jar:/home/hudson/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.5/axiom-api-1.2.5.jar:/home/hudson/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/home/hudson/.m2/repository/xerces/xercesImpl/2.6.2/xercesImpl-2.6.2.jar:/home/hudson/.m2/repository/xml-apis/xml-apis/1.3.02/xml-apis-1.3.02.jar:/home/hudson/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/home/hudson/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-server/1.0/abdera-server-1.0.jar:/home/hudson/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/home/hudson/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/home/hudson/.m2/repository/com/sun/jersey/contribs/jersey-atom-abdera/1.3/jersey-atom-abdera-1.3.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-extensions-json/1.0/abdera-extensions-json-1.0.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-extensions-main/1.0/abdera-extensions-main-1.0.jar:/home/hudson/.m2/repository/org/apache/abdera/abdera-extensions-html/1.0/abdera-extensions-html-1.0.jar:/home/hudson/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/home/hudson/.m2/repository/org/slf4j/slf4j-jdk14/1.5.8/slf4j-jdk14-1.5.8.jar:/home/hudson/.m2/repository/junit/junit/4.8.1/junit-4.8.1.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-webapp/7.1.5.v20100705/jetty-webapp-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-xml/7.1.5.v20100705/jetty-xml-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-util/7.1.5.v20100705/jetty-util-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-servlet/7.1.5.v20100705/jetty-servlet-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-security/7.1.5.v20100705/jetty-security-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-server/7.1.5.v20100705/jetty-server-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-continuation/7.1.5.v20100705/jetty-continuation-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-http/7.1.5.v20100705/jetty-http-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/eclipse/jetty/jetty-io/7.1.5.v20100705/jetty-io-7.1.5.v20100705.jar:/home/hudson/.m2/repository/org/mortbay/jetty/jsp-2.1-glassfish/9.1.1.B60.25.p2/jsp-2.1-glassfish-9.1.1.B60.25.p2.jar:/home/hudson/.m2/repository/org/eclipse/jdt/core/3.1.1/core-3.1.1.jar:/home/hudson/.m2/repository/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.jar:/home/hudson/.m2/repository/ant/ant/1.6.5/ant-1.6.5.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/smart-bean-guice-util/0.2-SNAPSHOT/smart-bean-guice-util-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/webservice-resources/0.1-SNAPSHOT/webservice-resources-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/com/sun/jersey/jersey-server/1.3/jersey-server-1.3.jar:/home/hudson/.m2/repository/asm/asm/3.1/asm-3.1.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/rest/atom-server/0.2-SNAPSHOT/atom-server-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/rest/server/0.2-SNAPSHOT/server-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/opensearch/jaxrs/0.2-SNAPSHOT/jaxrs-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/opensearch/api/0.2-SNAPSHOT/api-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/opensearch/impl/0.2-SNAPSHOT/impl-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-util/opensearch/dom-io/0.2-SNAPSHOT/dom-io-0.2-SNAPSHOT.jar:/home/hudson/.m2/repository/xom/xom/1.2.5/xom-1.2.5.jar:/home/hudson/.m2/repository/xalan/xalan/2.7.0/xalan-2.7.0.jar:/home/hudson/.m2/repository/org/codehaus/jackson/jackson-core-lgpl/1.5.3/jackson-core-lgpl-1.5.3.jar:/home/hudson/.m2/repository/org/codehaus/jackson/jackson-mapper-lgpl/1.5.3/jackson-mapper-lgpl-1.5.3.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/content-api/0.1-SNAPSHOT/content-api-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-dao-queryparam/0.4-SNAPSHOT/smart-dao-queryparam-0.4-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-dao/smart-hbase-dao-spi/0.4-SNAPSHOT/smart-hbase-dao-spi-0.4-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/api-spi-guice-binder/0.1-SNAPSHOT/api-spi-guice-binder-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/content-spi-impl/0.1-SNAPSHOT/content-spi-impl-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/content-spi/0.1-SNAPSHOT/content-spi-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-dao/smart-hbase-dao/0.4-SNAPSHOT/smart-hbase-dao-0.4-SNAPSHOT.jar:/home/hudson/.m2/repository/org/apache/hbase/hbase/0.89.0-SNAPSHOT/hbase-0.89.0-SNAPSHOT.jar:/home/hudson/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/home/hudson/.m2/repository/log4j/log4j/1.2.15/log4j-1.2.15.jar:/home/hudson/.m2/repository/org/apache/thrift/thrift/0.2.0/thrift-0.2.0.jar:/home/hudson/.m2/repository/com/google/guava/guava/r05/guava-r05.jar:/home/hudson/.m2/repository/org/apache/hadoop/hadoop-core/0.20.3-append-r964955-1240/hadoop-core-0.20.3-append-r964955-1240.jar:/home/hudson/.m2/repository/xmlenc/xmlenc/0.52/xmlenc-0.52.jar:/home/hudson/.m2/repository/commons-net/commons-net/1.4.1/commons-net-1.4.1.jar:/home/hudson/.m2/repository/oro/oro/2.0.8/oro-2.0.8.jar:/home/hudson/.m2/repository/org/mortbay/jetty/jetty/6.1.24/jetty-6.1.24.jar:/home/hudson/.m2/repository/org/mortbay/jetty/jetty-util/6.1.24/jetty-util-6.1.24.jar:/home/hudson/.m2/repository/org/mortbay/jetty/servlet-api-2.5/6.1.14/servlet-api-2.5-6.1.14.jar:/home/hudson/.m2/repository/tomcat/jasper-runtime/5.5.23/jasper-runtime-5.5.23.jar:/home/hudson/.m2/repository/tomcat/jasper-compiler/5.5.23/jasper-compiler-5.5.23.jar:/home/hudson/.m2/repository/org/mortbay/jetty/jsp-api-2.1/6.1.14/jsp-api-2.1-6.1.14.jar:/home/hudson/.m2/repository/org/mortbay/jetty/jsp-2.1/6.1.14/jsp-2.1-6.1.14.jar:/home/hudson/.m2/repository/commons-el/commons-el/1.0/commons-el-1.0.jar:/home/hudson/.m2/repository/net/java/dev/jets3t/jets3t/0.7.1/jets3t-0.7.1.jar:/home/hudson/.m2/repository/net/sf/kosmosfs/kfs/0.3/kfs-0.3.jar:/home/hudson/.m2/repository/hsqldb/hsqldb/1.8.0.10/hsqldb-1.8.0.10.jar:/home/hudson/.m2/repository/org/apache/hadoop/zookeeper/3.3.1/zookeeper-3.3.1.jar:/home/hudson/.m2/repository/jline/jline/0.9.94/jline-0.9.94.jar:/home/hudson/.m2/repository/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar:/home/hudson/.m2/repository/javax/servlet/jsp-api/2.0/jsp-api-2.0.jar:/home/hudson/.m2/repository/org/jruby/jruby-complete/1.5.1/jruby-complete-1.5.1.jar:/home/hudson/.m2/repository/com/google/protobuf/protobuf-java/2.3.0/protobuf-java-2.3.0.jar:/home/hudson/.m2/repository/com/sun/jersey/jersey-json/1.3/jersey-json-1.3.jar:/home/hudson/.m2/repository/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar:/home/hudson/.m2/repository/stax/stax-api/1.0.1/stax-api-1.0.1.jar:/home/hudson/.m2/repository/com/sun/xml/bind/jaxb-impl/2.1.12/jaxb-impl-2.1.12.jar:/home/hudson/.m2/repository/javax/xml/bind/jaxb-api/2.1/jaxb-api-2.1.jar:/home/hudson/.m2/repository/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar:/home/hudson/.m2/repository/org/apache/hadoop/avro/1.3.2/avro-1.3.2.jar:/home/hudson/.m2/repository/com/thoughtworks/paranamer/paranamer/2.2/paranamer-2.2.jar:/home/hudson/.m2/repository/com/thoughtworks/paranamer/paranamer-ant/2.2/paranamer-ant-2.2.jar:/home/hudson/.m2/repository/com/thoughtworks/paranamer/paranamer-generator/2.2/paranamer-generator-2.2.jar:/home/hudson/.m2/repository/com/thoughtworks/qdox/qdox/1.10.1/qdox-1.10.1.jar:/home/hudson/.m2/repository/org/apache/ant/ant/1.7.1/ant-1.7.1.jar:/home/hudson/.m2/repository/org/apache/ant/ant-launcher/1.7.1/ant-launcher-1.7.1.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-abstract-dao/0.4-SNAPSHOT/smart-abstract-dao-0.4-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-domain/0.4-SNAPSHOT/smart-domain-0.4-SNAPSHOT.jar:/home/hudson/.m2/repository/com/smartitengineering/smart-cms/content-api-impl/0.1-SNAPSHOT/content-api-impl-0.1-SNAPSHOT.jar:/home/hudson/.m2/repository/com/google/inject/extensions/guice-multibindings/2.0/guice-multibindings-2.0.jar:/home/hudson/.m2/repository/org/apache/hbase/hbase/0.89.0-SNAPSHOT/hbase-0.89.0-SNAPSHOT-tests.jar:/home/hudson/.m2/repository/org/apache/hadoop/hadoop-test/0.20.3-append-r964955-1240/hadoop-test-0.20.3-append-r964955-1240.jar:/home/hudson/.m2/repository/org/apache/ftpserver/ftplet-api/1.0.0/ftplet-api-1.0.0.jar:/home/hudson/.m2/repository/org/apache/mina/mina-core/2.0.0-M5/mina-core-2.0.0-M5.jar:/home/hudson/.m2/repository/org/apache/ftpserver/ftpserver-core/1.0.0/ftpserver-core-1.0.0.jar:/home/hudson/.m2/repository/org/apache/ftpserver/ftpserver-deprecated/1.0.0-M2/ftpserver-deprecated-1.0.0-M2.jar: | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:java.library.path=/opt/jdk1.6.0_20/jre/lib/i386/server:/opt/jdk1.6.0_20/jre/lib/i386:/opt/jdk1.6.0_20/jre/../lib/i386:/usr/java/packages/lib/i386:/lib:/usr/lib | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:java.io.tmpdir=/tmp | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:java.compiler=<NA> | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:os.name=Linux | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:os.arch=i386 | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:os.version=2.6.32-24-generic-pae | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:user.name=hudson | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:user.home=/home/hudson | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Client environment:user.dir=/home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl | |
10/10/07 20:26:54 INFO zookeeper.ZooKeeper: Initiating client connection, connectString=localhost:21810 sessionTimeout=60000 watcher=org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper@1706eb7 | |
10/10/07 20:26:54 INFO zookeeper.ClientCnxn: Opening socket connection to server localhost/127.0.0.1:21810 | |
10/10/07 20:26:54 INFO server.NIOServerCnxn: Accepted socket connection from /223.27.113.138:58062 | |
10/10/07 20:26:54 INFO zookeeper.ClientCnxn: Socket connection established to localhost/127.0.0.1:21810, initiating session | |
10/10/07 20:26:54 INFO server.NIOServerCnxn: Client attempting to establish new session at /223.27.113.138:58062 | |
10/10/07 20:26:54 DEBUG zookeeper.ZooKeeperWrapper: <localhost:/hbase,org.apache.hadoop.hbase.client.HConnectionManager>Connected to zookeeper again | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor registerMBean | |
FINER: ObjectName = org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=Connections,name2=223.27.113.138,name3=0x12b8a4e625a0000 | |
Oct 7, 2010 8:26:54 PM Repository addMBean | |
FINER: name=org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=Connections,name2=223.27.113.138,name3=0x12b8a4e625a0000 | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor addObject | |
FINER: Send create notification of object org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=Connections,name2=223.27.113.138,name3=0x12b8a4e625a0000 | |
Oct 7, 2010 8:26:54 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.registered org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=Connections,name2=223.27.113.138,name3=0x12b8a4e625a0000 | |
10/10/07 20:26:54 INFO server.NIOServerCnxn: Established session 0x12b8a4e625a0000 with negotiated timeout 40000 for client /223.27.113.138:58062 | |
10/10/07 20:26:54 INFO zookeeper.ClientCnxn: Session establishment complete on server localhost/127.0.0.1:21810, sessionid = 0x12b8a4e625a0000, negotiated timeout = 40000 | |
10/10/07 20:26:54 INFO client.HConnectionManager$TableServers: getMaster attempt 0 of 10 failed; retrying after sleep of 1000 | |
java.io.IOException: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:492) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readMasterAddressOrThrow(ZooKeeperWrapper.java:388) | |
at org.apache.hadoop.hbase.client.HConnectionManager$TableServers.getMaster(HConnectionManager.java:381) | |
at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:78) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:97) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
Caused by: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:102) | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:42) | |
at org.apache.zookeeper.ZooKeeper.getData(ZooKeeper.java:921) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:488) | |
... 24 more | |
10/10/07 20:26:55 INFO client.HConnectionManager$TableServers: getMaster attempt 1 of 10 failed; retrying after sleep of 1000 | |
java.io.IOException: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:492) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readMasterAddressOrThrow(ZooKeeperWrapper.java:388) | |
at org.apache.hadoop.hbase.client.HConnectionManager$TableServers.getMaster(HConnectionManager.java:381) | |
at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:78) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:97) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
Caused by: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:102) | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:42) | |
at org.apache.zookeeper.ZooKeeper.getData(ZooKeeper.java:921) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:488) | |
... 24 more | |
10/10/07 20:26:56 INFO client.HConnectionManager$TableServers: getMaster attempt 2 of 10 failed; retrying after sleep of 1000 | |
java.io.IOException: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:492) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readMasterAddressOrThrow(ZooKeeperWrapper.java:388) | |
at org.apache.hadoop.hbase.client.HConnectionManager$TableServers.getMaster(HConnectionManager.java:381) | |
at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:78) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:97) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
Caused by: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:102) | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:42) | |
at org.apache.zookeeper.ZooKeeper.getData(ZooKeeper.java:921) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:488) | |
... 24 more | |
10/10/07 20:26:57 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #15 | |
10/10/07 20:26:57 DEBUG ipc.Server: got #15 | |
10/10/07 20:26:57 DEBUG ipc.Server: IPC Server handler 4 on 33323: has #15 from 223.27.113.138:47988 | |
10/10/07 20:26:57 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 0 procesingTime= 0 | |
10/10/07 20:26:57 DEBUG ipc.Server: IPC Server Responder: responding to #15 from 223.27.113.138:47988 | |
10/10/07 20:26:57 DEBUG ipc.Server: IPC Server Responder: responding to #15 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:26:57 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #15 | |
10/10/07 20:26:57 DEBUG ipc.RPC: Call: sendHeartbeat 4 | |
10/10/07 20:26:57 INFO client.HConnectionManager$TableServers: getMaster attempt 3 of 10 failed; retrying after sleep of 2000 | |
java.io.IOException: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:492) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readMasterAddressOrThrow(ZooKeeperWrapper.java:388) | |
at org.apache.hadoop.hbase.client.HConnectionManager$TableServers.getMaster(HConnectionManager.java:381) | |
at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:78) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:97) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
Caused by: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:102) | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:42) | |
at org.apache.zookeeper.ZooKeeper.getData(ZooKeeper.java:921) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:488) | |
... 24 more | |
10/10/07 20:26:59 INFO client.HConnectionManager$TableServers: getMaster attempt 4 of 10 failed; retrying after sleep of 2000 | |
java.io.IOException: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:492) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readMasterAddressOrThrow(ZooKeeperWrapper.java:388) | |
at org.apache.hadoop.hbase.client.HConnectionManager$TableServers.getMaster(HConnectionManager.java:381) | |
at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:78) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:97) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
Caused by: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:102) | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:42) | |
at org.apache.zookeeper.ZooKeeper.getData(ZooKeeper.java:921) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:488) | |
... 24 more | |
10/10/07 20:27:00 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #16 | |
10/10/07 20:27:00 DEBUG ipc.Server: got #16 | |
10/10/07 20:27:00 DEBUG ipc.Server: IPC Server handler 7 on 33323: has #16 from 223.27.113.138:47988 | |
10/10/07 20:27:00 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 0 procesingTime= 0 | |
10/10/07 20:27:00 DEBUG ipc.Server: IPC Server Responder: responding to #16 from 223.27.113.138:47988 | |
10/10/07 20:27:00 DEBUG ipc.Server: IPC Server Responder: responding to #16 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:00 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #16 | |
10/10/07 20:27:00 DEBUG ipc.RPC: Call: sendHeartbeat 3 | |
10/10/07 20:27:01 INFO client.HConnectionManager$TableServers: getMaster attempt 5 of 10 failed; retrying after sleep of 4000 | |
java.io.IOException: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:492) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readMasterAddressOrThrow(ZooKeeperWrapper.java:388) | |
at org.apache.hadoop.hbase.client.HConnectionManager$TableServers.getMaster(HConnectionManager.java:381) | |
at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:78) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:97) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
Caused by: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:102) | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:42) | |
at org.apache.zookeeper.ZooKeeper.getData(ZooKeeper.java:921) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:488) | |
... 24 more | |
10/10/07 20:27:03 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #17 | |
10/10/07 20:27:03 DEBUG ipc.Server: got #17 | |
10/10/07 20:27:03 DEBUG ipc.Server: IPC Server handler 6 on 33323: has #17 from 223.27.113.138:47988 | |
10/10/07 20:27:03 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 1 procesingTime= 0 | |
10/10/07 20:27:03 DEBUG ipc.Server: IPC Server Responder: responding to #17 from 223.27.113.138:47988 | |
10/10/07 20:27:03 DEBUG ipc.Server: IPC Server Responder: responding to #17 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:03 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #17 | |
10/10/07 20:27:03 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:04 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson: closed | |
10/10/07 20:27:04 DEBUG ipc.Server: IPC Server listener on 33323: disconnecting client 223.27.113.138. Number of active connections: 3 | |
10/10/07 20:27:04 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson: stopped, remaining connections 2 | |
10/10/07 20:27:05 INFO client.HConnectionManager$TableServers: getMaster attempt 6 of 10 failed; retrying after sleep of 4000 | |
java.io.IOException: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:492) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readMasterAddressOrThrow(ZooKeeperWrapper.java:388) | |
at org.apache.hadoop.hbase.client.HConnectionManager$TableServers.getMaster(HConnectionManager.java:381) | |
at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:78) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:97) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
Caused by: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:102) | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:42) | |
at org.apache.zookeeper.ZooKeeper.getData(ZooKeeper.java:921) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:488) | |
... 24 more | |
10/10/07 20:27:06 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #18 | |
10/10/07 20:27:06 DEBUG ipc.Server: got #18 | |
10/10/07 20:27:06 DEBUG ipc.Server: IPC Server handler 8 on 33323: has #18 from 223.27.113.138:47988 | |
10/10/07 20:27:06 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 1 procesingTime= 0 | |
10/10/07 20:27:06 DEBUG ipc.Server: IPC Server Responder: responding to #18 from 223.27.113.138:47988 | |
10/10/07 20:27:06 DEBUG ipc.Server: IPC Server Responder: responding to #18 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:06 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #18 | |
10/10/07 20:27:06 DEBUG ipc.RPC: Call: sendHeartbeat 1 | |
10/10/07 20:27:09 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #19 | |
10/10/07 20:27:09 DEBUG ipc.Server: got #19 | |
10/10/07 20:27:09 DEBUG ipc.Server: IPC Server handler 9 on 33323: has #19 from 223.27.113.138:47988 | |
10/10/07 20:27:09 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 1 procesingTime= 0 | |
10/10/07 20:27:09 DEBUG ipc.Server: IPC Server Responder: responding to #19 from 223.27.113.138:47988 | |
10/10/07 20:27:09 DEBUG ipc.Server: IPC Server Responder: responding to #19 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:09 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #19 | |
10/10/07 20:27:09 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:09 INFO client.HConnectionManager$TableServers: getMaster attempt 7 of 10 failed; retrying after sleep of 8000 | |
java.io.IOException: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:492) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readMasterAddressOrThrow(ZooKeeperWrapper.java:388) | |
at org.apache.hadoop.hbase.client.HConnectionManager$TableServers.getMaster(HConnectionManager.java:381) | |
at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:78) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:97) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
Caused by: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:102) | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:42) | |
at org.apache.zookeeper.ZooKeeper.getData(ZooKeeper.java:921) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:488) | |
... 24 more | |
10/10/07 20:27:12 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #20 | |
10/10/07 20:27:12 DEBUG ipc.Server: got #20 | |
10/10/07 20:27:12 DEBUG ipc.Server: IPC Server handler 0 on 33323: has #20 from 223.27.113.138:47988 | |
10/10/07 20:27:12 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 0 procesingTime= 0 | |
10/10/07 20:27:12 DEBUG ipc.Server: IPC Server Responder: responding to #20 from 223.27.113.138:47988 | |
10/10/07 20:27:12 DEBUG ipc.Server: IPC Server Responder: responding to #20 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:12 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #20 | |
10/10/07 20:27:12 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:15 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #21 | |
10/10/07 20:27:15 DEBUG ipc.Server: got #21 | |
10/10/07 20:27:15 DEBUG ipc.Server: IPC Server handler 1 on 33323: has #21 from 223.27.113.138:47988 | |
10/10/07 20:27:15 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 0 procesingTime= 0 | |
10/10/07 20:27:15 DEBUG ipc.Server: IPC Server Responder: responding to #21 from 223.27.113.138:47988 | |
10/10/07 20:27:15 DEBUG ipc.Server: IPC Server Responder: responding to #21 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:15 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #21 | |
10/10/07 20:27:15 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:17 INFO client.HConnectionManager$TableServers: getMaster attempt 8 of 10 failed; retrying after sleep of 16000 | |
java.io.IOException: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:492) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readMasterAddressOrThrow(ZooKeeperWrapper.java:388) | |
at org.apache.hadoop.hbase.client.HConnectionManager$TableServers.getMaster(HConnectionManager.java:381) | |
at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:78) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:97) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
Caused by: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:102) | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:42) | |
at org.apache.zookeeper.ZooKeeper.getData(ZooKeeper.java:921) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:488) | |
... 24 more | |
10/10/07 20:27:18 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #22 | |
10/10/07 20:27:18 DEBUG ipc.Server: got #22 | |
10/10/07 20:27:18 DEBUG ipc.Server: IPC Server handler 2 on 33323: has #22 from 223.27.113.138:47988 | |
10/10/07 20:27:18 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 0 procesingTime= 0 | |
10/10/07 20:27:18 DEBUG ipc.Server: IPC Server Responder: responding to #22 from 223.27.113.138:47988 | |
10/10/07 20:27:18 DEBUG ipc.Server: IPC Server Responder: responding to #22 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:18 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #22 | |
10/10/07 20:27:18 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:21 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #23 | |
10/10/07 20:27:21 DEBUG ipc.Server: got #23 | |
10/10/07 20:27:21 DEBUG ipc.Server: IPC Server handler 3 on 33323: has #23 from 223.27.113.138:47988 | |
10/10/07 20:27:21 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 0 procesingTime= 0 | |
10/10/07 20:27:21 DEBUG ipc.Server: IPC Server Responder: responding to #23 from 223.27.113.138:47988 | |
10/10/07 20:27:21 DEBUG ipc.Server: IPC Server Responder: responding to #23 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:21 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #23 | |
10/10/07 20:27:21 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:24 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #24 | |
10/10/07 20:27:24 DEBUG ipc.Server: got #24 | |
10/10/07 20:27:24 DEBUG ipc.Server: IPC Server handler 5 on 33323: has #24 from 223.27.113.138:47988 | |
10/10/07 20:27:24 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 1 procesingTime= 0 | |
10/10/07 20:27:24 DEBUG ipc.Server: IPC Server Responder: responding to #24 from 223.27.113.138:47988 | |
10/10/07 20:27:24 DEBUG ipc.Server: IPC Server Responder: responding to #24 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:24 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #24 | |
10/10/07 20:27:24 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:24 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #25 | |
10/10/07 20:27:24 DEBUG ipc.Server: got #25 | |
10/10/07 20:27:24 DEBUG ipc.Server: IPC Server handler 4 on 33323: has #25 from 223.27.113.138:47989 | |
10/10/07 20:27:24 DEBUG ipc.Server: Served: renewLease queueTime= 0 procesingTime= 0 | |
10/10/07 20:27:24 DEBUG ipc.Server: IPC Server Responder: responding to #25 from 223.27.113.138:47989 | |
10/10/07 20:27:24 DEBUG ipc.Server: IPC Server Responder: responding to #25 from 223.27.113.138:47989 Wrote 95 bytes. | |
10/10/07 20:27:24 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #25 | |
10/10/07 20:27:24 DEBUG ipc.RPC: Call: renewLease 3 | |
10/10/07 20:27:27 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #26 | |
10/10/07 20:27:27 DEBUG ipc.Server: got #26 | |
10/10/07 20:27:27 DEBUG ipc.Server: IPC Server handler 7 on 33323: has #26 from 223.27.113.138:47988 | |
10/10/07 20:27:27 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 0 procesingTime= 0 | |
10/10/07 20:27:27 DEBUG ipc.Server: IPC Server Responder: responding to #26 from 223.27.113.138:47988 | |
10/10/07 20:27:27 DEBUG ipc.Server: IPC Server Responder: responding to #26 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:27 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #26 | |
10/10/07 20:27:27 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:30 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #27 | |
10/10/07 20:27:30 DEBUG ipc.Server: got #27 | |
10/10/07 20:27:30 DEBUG ipc.Server: IPC Server handler 6 on 33323: has #27 from 223.27.113.138:47988 | |
10/10/07 20:27:30 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 1 procesingTime= 0 | |
10/10/07 20:27:30 DEBUG ipc.Server: IPC Server Responder: responding to #27 from 223.27.113.138:47988 | |
10/10/07 20:27:30 DEBUG ipc.Server: IPC Server Responder: responding to #27 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:30 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #27 | |
10/10/07 20:27:30 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:33 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #28 | |
10/10/07 20:27:33 DEBUG ipc.Server: got #28 | |
10/10/07 20:27:33 DEBUG ipc.Server: IPC Server handler 8 on 33323: has #28 from 223.27.113.138:47988 | |
10/10/07 20:27:33 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 1 procesingTime= 0 | |
10/10/07 20:27:33 DEBUG ipc.Server: IPC Server Responder: responding to #28 from 223.27.113.138:47988 | |
10/10/07 20:27:33 DEBUG ipc.Server: IPC Server Responder: responding to #28 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:33 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #28 | |
10/10/07 20:27:33 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:33 INFO client.HConnectionManager$TableServers: getMaster attempt 9 of 10 failed; no more retrying. | |
java.io.IOException: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:492) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readMasterAddressOrThrow(ZooKeeperWrapper.java:388) | |
at org.apache.hadoop.hbase.client.HConnectionManager$TableServers.getMaster(HConnectionManager.java:381) | |
at org.apache.hadoop.hbase.client.HBaseAdmin.<init>(HBaseAdmin.java:78) | |
at com.smartitengineering.cms.client.impl.AppTest.globalSetup(AppTest.java:97) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) | |
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:236) | |
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) | |
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) | |
at org.apache.maven.surefire.Surefire.run(Surefire.java:180) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) | |
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) | |
Caused by: org.apache.zookeeper.KeeperException$NoNodeException: KeeperErrorCode = NoNode for /hbase/master | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:102) | |
at org.apache.zookeeper.KeeperException.create(KeeperException.java:42) | |
at org.apache.zookeeper.ZooKeeper.getData(ZooKeeper.java:921) | |
at org.apache.hadoop.hbase.zookeeper.ZooKeeperWrapper.readAddressOrThrow(ZooKeeperWrapper.java:488) | |
... 24 more | |
10/10/07 20:27:33 INFO hbase.HBaseTestingUtility: Shutting down minicluster | |
Oct 7, 2010 8:27:33 PM Repository retrieve | |
FINER: name=org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=Connections,name2=223.27.113.138,name3=0x12b8a4e625a0000 | |
Oct 7, 2010 8:27:33 PM Repository remove | |
FINER: name=org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=Connections,name2=223.27.113.138,name3=0x12b8a4e625a0000 | |
Oct 7, 2010 8:27:33 PM DefaultMBeanServerInterceptor unregisterMBean | |
FINER: Send delete notification of object org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=Connections,name2=223.27.113.138,name3=0x12b8a4e625a0000 | |
Oct 7, 2010 8:27:33 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.unregistered org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=Connections,name2=223.27.113.138,name3=0x12b8a4e625a0000 | |
10/10/07 20:27:33 INFO server.NIOServerCnxn: Closed socket connection for client /223.27.113.138:58062 which had sessionid 0x12b8a4e625a0000 | |
10/10/07 20:27:33 INFO zookeeper.ClientCnxn: Unable to read additional data from server sessionid 0x12b8a4e625a0000, likely server has closed socket, closing socket connection and attempting reconnect | |
10/10/07 20:27:33 INFO server.NIOServerCnxn: NIOServerCnxn factory exited run method | |
10/10/07 20:27:33 INFO server.PrepRequestProcessor: PrepRequestProcessor exited loop! | |
10/10/07 20:27:33 INFO server.SyncRequestProcessor: SyncRequestProcessor exited! | |
10/10/07 20:27:33 INFO server.FinalRequestProcessor: shutdown of request processor complete | |
Oct 7, 2010 8:27:33 PM Repository retrieve | |
FINER: name=org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=InMemoryDataTree | |
Oct 7, 2010 8:27:33 PM Repository remove | |
FINER: name=org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=InMemoryDataTree | |
Oct 7, 2010 8:27:33 PM DefaultMBeanServerInterceptor unregisterMBean | |
FINER: Send delete notification of object org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=InMemoryDataTree | |
Oct 7, 2010 8:27:33 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.unregistered org.apache.ZooKeeperService:name0=StandaloneServer_port-1,name1=InMemoryDataTree | |
Oct 7, 2010 8:27:33 PM Repository retrieve | |
FINER: name=org.apache.ZooKeeperService:name0=StandaloneServer_port-1 | |
Oct 7, 2010 8:27:33 PM Repository remove | |
FINER: name=org.apache.ZooKeeperService:name0=StandaloneServer_port-1 | |
Oct 7, 2010 8:27:33 PM DefaultMBeanServerInterceptor unregisterMBean | |
FINER: Send delete notification of object org.apache.ZooKeeperService:name0=StandaloneServer_port-1 | |
Oct 7, 2010 8:27:33 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.unregistered org.apache.ZooKeeperService:name0=StandaloneServer_port-1 | |
10/10/07 20:27:33 WARN client.HConnectionManager$ClientZKWatcher: No longer connected to ZooKeeper, current state: Disconnected | |
10/10/07 20:27:34 INFO server.SessionTrackerImpl: SessionTrackerImpl exited loop! | |
10/10/07 20:27:35 INFO zookeeper.ClientCnxn: Opening socket connection to server localhost/127.0.0.1:21810 | |
10/10/07 20:27:36 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #29 | |
10/10/07 20:27:36 DEBUG ipc.Server: got #29 | |
10/10/07 20:27:36 DEBUG ipc.Server: IPC Server handler 9 on 33323: has #29 from 223.27.113.138:47988 | |
10/10/07 20:27:36 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 1 procesingTime= 0 | |
10/10/07 20:27:36 DEBUG ipc.Server: IPC Server Responder: responding to #29 from 223.27.113.138:47988 | |
10/10/07 20:27:36 DEBUG ipc.Server: IPC Server Responder: responding to #29 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:36 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #29 | |
10/10/07 20:27:36 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:39 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #30 | |
10/10/07 20:27:39 DEBUG ipc.Server: got #30 | |
10/10/07 20:27:39 DEBUG ipc.Server: IPC Server handler 0 on 33323: has #30 from 223.27.113.138:47988 | |
10/10/07 20:27:39 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 0 procesingTime= 2 | |
10/10/07 20:27:39 DEBUG ipc.Server: IPC Server Responder: responding to #30 from 223.27.113.138:47988 | |
10/10/07 20:27:39 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #30 | |
10/10/07 20:27:39 DEBUG ipc.RPC: Call: sendHeartbeat 4 | |
10/10/07 20:27:39 DEBUG ipc.Server: IPC Server Responder: responding to #30 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:42 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #31 | |
10/10/07 20:27:42 DEBUG ipc.Server: got #31 | |
10/10/07 20:27:42 DEBUG ipc.Server: IPC Server handler 1 on 33323: has #31 from 223.27.113.138:47988 | |
10/10/07 20:27:42 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 1 procesingTime= 0 | |
10/10/07 20:27:42 DEBUG ipc.Server: IPC Server Responder: responding to #31 from 223.27.113.138:47988 | |
10/10/07 20:27:42 DEBUG ipc.Server: IPC Server Responder: responding to #31 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:42 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #31 | |
10/10/07 20:27:42 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:45 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #32 | |
10/10/07 20:27:45 DEBUG ipc.Server: got #32 | |
10/10/07 20:27:45 DEBUG ipc.Server: IPC Server handler 2 on 33323: has #32 from 223.27.113.138:47988 | |
10/10/07 20:27:45 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 1 procesingTime= 0 | |
10/10/07 20:27:45 DEBUG ipc.Server: IPC Server Responder: responding to #32 from 223.27.113.138:47988 | |
10/10/07 20:27:45 DEBUG ipc.Server: IPC Server Responder: responding to #32 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:45 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #32 | |
10/10/07 20:27:45 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:48 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #33 | |
10/10/07 20:27:48 DEBUG ipc.Server: got #33 | |
10/10/07 20:27:48 DEBUG ipc.Server: IPC Server handler 3 on 33323: has #33 from 223.27.113.138:47988 | |
10/10/07 20:27:48 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 4 procesingTime= 1 | |
10/10/07 20:27:48 DEBUG ipc.Server: IPC Server Responder: responding to #33 from 223.27.113.138:47988 | |
10/10/07 20:27:48 DEBUG ipc.Server: IPC Server Responder: responding to #33 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:48 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #33 | |
10/10/07 20:27:48 DEBUG ipc.RPC: Call: sendHeartbeat 7 | |
10/10/07 20:27:51 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #34 | |
10/10/07 20:27:51 DEBUG ipc.Server: got #34 | |
10/10/07 20:27:51 DEBUG ipc.Server: IPC Server handler 5 on 33323: has #34 from 223.27.113.138:47988 | |
10/10/07 20:27:51 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 1 procesingTime= 0 | |
10/10/07 20:27:51 DEBUG ipc.Server: IPC Server Responder: responding to #34 from 223.27.113.138:47988 | |
10/10/07 20:27:51 DEBUG ipc.Server: IPC Server Responder: responding to #34 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:51 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #34 | |
10/10/07 20:27:51 DEBUG ipc.RPC: Call: sendHeartbeat 2 | |
10/10/07 20:27:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #35 | |
10/10/07 20:27:54 DEBUG ipc.Server: got #35 | |
10/10/07 20:27:54 DEBUG ipc.Server: IPC Server handler 4 on 33323: has #35 from 223.27.113.138:47988 | |
10/10/07 20:27:54 DEBUG ipc.Server: Served: sendHeartbeat queueTime= 0 procesingTime= 0 | |
10/10/07 20:27:54 DEBUG ipc.Server: IPC Server Responder: responding to #35 from 223.27.113.138:47988 | |
10/10/07 20:27:54 DEBUG ipc.Server: IPC Server Responder: responding to #35 from 223.27.113.138:47988 Wrote 148 bytes. | |
10/10/07 20:27:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #35 | |
10/10/07 20:27:54 DEBUG ipc.RPC: Call: sendHeartbeat 3 | |
10/10/07 20:27:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson sending #36 | |
10/10/07 20:27:54 DEBUG ipc.Server: got #36 | |
10/10/07 20:27:54 DEBUG ipc.Server: IPC Server handler 7 on 33323: has #36 from 223.27.113.138:47989 | |
10/10/07 20:27:54 DEBUG ipc.Server: Served: renewLease queueTime= 1 procesingTime= 0 | |
10/10/07 20:27:54 DEBUG ipc.Server: IPC Server Responder: responding to #36 from 223.27.113.138:47989 | |
10/10/07 20:27:54 DEBUG ipc.Server: IPC Server Responder: responding to #36 from 223.27.113.138:47989 Wrote 95 bytes. | |
10/10/07 20:27:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson got value #36 | |
10/10/07 20:27:54 DEBUG ipc.RPC: Call: renewLease 2 | |
Shutting down the Mini HDFS Cluster | |
Shutting down DataNode 0 | |
10/10/07 20:27:54 INFO ipc.Server: Stopping server on 50751 | |
10/10/07 20:27:54 INFO ipc.Server: IPC Server handler 0 on 50751: exiting | |
10/10/07 20:27:54 INFO ipc.Server: IPC Server handler 1 on 50751: exiting | |
10/10/07 20:27:54 INFO ipc.Server: IPC Server handler 2 on 50751: exiting | |
10/10/07 20:27:54 INFO ipc.Server: Stopping IPC Server listener on 50751 | |
10/10/07 20:27:54 DEBUG ipc.Server: Checking for old call responses. | |
10/10/07 20:27:54 INFO ipc.Server: Stopping IPC Server Responder | |
Oct 7, 2010 8:27:54 PM Repository retrieve | |
FINER: name=hadoop:service=DataNode,name=RpcActivityForPort50751 | |
Oct 7, 2010 8:27:54 PM Repository remove | |
FINER: name=hadoop:service=DataNode,name=RpcActivityForPort50751 | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor unregisterMBean | |
FINER: Send delete notification of object hadoop:name=RpcActivityForPort50751,service=DataNode | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.unregistered hadoop:service=DataNode,name=RpcActivityForPort50751 | |
10/10/07 20:27:54 WARN datanode.DataNode: DatanodeRegistration(223.27.113.138:44473, storageID=DS-592771338-127.0.1.1-44473-1286515614067, infoPort=44625, ipcPort=50751):DataXceiveServer: java.nio.channels.AsynchronousCloseException | |
at java.nio.channels.spi.AbstractInterruptibleChannel.end(AbstractInterruptibleChannel.java:185) | |
at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:152) | |
at sun.nio.ch.ServerSocketAdaptor.accept(ServerSocketAdaptor.java:84) | |
at org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(DataXceiverServer.java:130) | |
at java.lang.Thread.run(Thread.java:619) | |
10/10/07 20:27:54 INFO datanode.DataNode: Waiting for threadgroup to exit, active threads is 0 | |
10/10/07 20:27:54 INFO datanode.DataBlockScanner: Exiting DataBlockScanner thread. | |
10/10/07 20:27:54 INFO datanode.DataNode: DatanodeRegistration(223.27.113.138:44473, storageID=DS-592771338-127.0.1.1-44473-1286515614067, infoPort=44625, ipcPort=50751):Finishing DataNode in: FSDataset{dirpath='/home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/build/data/ce0b9c04-9d66-4da9-8018-a5a01f1464aa/dfs/data/data1/current,/home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/build/data/ce0b9c04-9d66-4da9-8018-a5a01f1464aa/dfs/data/data2/current'} | |
10/10/07 20:27:54 INFO ipc.Server: Stopping server on 50751 | |
Oct 7, 2010 8:27:54 PM Repository retrieve | |
FINER: name=hadoop:service=DataNode,name=RpcActivityForPort50751 | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor getMBean | |
FINER: hadoop:service=DataNode,name=RpcActivityForPort50751: Found no object | |
10/10/07 20:27:54 INFO datanode.DataNode: Waiting for threadgroup to exit, active threads is 0 | |
Oct 7, 2010 8:27:54 PM Repository retrieve | |
FINER: name=hadoop:service=DataNode,name=FSDatasetState-UndefinedStorageId-129836624 | |
Oct 7, 2010 8:27:54 PM Repository remove | |
FINER: name=hadoop:service=DataNode,name=FSDatasetState-UndefinedStorageId-129836624 | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor unregisterMBean | |
FINER: Send delete notification of object hadoop:name=FSDatasetState-UndefinedStorageId-129836624,service=DataNode | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.unregistered hadoop:service=DataNode,name=FSDatasetState-UndefinedStorageId-129836624 | |
Oct 7, 2010 8:27:54 PM Repository retrieve | |
FINER: name=hadoop:service=DataNode,name=DataNodeActivity-UndefinedStorageId-94115792 | |
Oct 7, 2010 8:27:54 PM Repository remove | |
FINER: name=hadoop:service=DataNode,name=DataNodeActivity-UndefinedStorageId-94115792 | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor unregisterMBean | |
FINER: Send delete notification of object hadoop:name=DataNodeActivity-UndefinedStorageId-94115792,service=DataNode | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.unregistered hadoop:service=DataNode,name=DataNodeActivity-UndefinedStorageId-94115792 | |
Oct 7, 2010 8:27:54 PM Repository retrieve | |
FINER: name=hadoop:service=DataNode,name=FSDatasetState-UndefinedStorageId-129836624 | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor getMBean | |
FINER: hadoop:service=DataNode,name=FSDatasetState-UndefinedStorageId-129836624: Found no object | |
Oct 7, 2010 8:27:54 PM Repository retrieve | |
FINER: name=hadoop:service=DataNode,name=DataNodeActivity-UndefinedStorageId-94115792 | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor getMBean | |
FINER: hadoop:service=DataNode,name=DataNodeActivity-UndefinedStorageId-94115792: Found no object | |
10/10/07 20:27:54 DEBUG namenode.FSNamesystem: PendingReplicationMonitor thread received exception. java.lang.InterruptedException: sleep interrupted | |
10/10/07 20:27:54 WARN namenode.FSNamesystem: ReplicationMonitor thread received InterruptedException.java.lang.InterruptedException: sleep interrupted | |
10/10/07 20:27:54 INFO namenode.DecommissionManager: Interrupted Monitor | |
java.lang.InterruptedException: sleep interrupted | |
at java.lang.Thread.sleep(Native Method) | |
at org.apache.hadoop.hdfs.server.namenode.DecommissionManager$Monitor.run(DecommissionManager.java:65) | |
at java.lang.Thread.run(Thread.java:619) | |
10/10/07 20:27:54 DEBUG namenode.LeaseManager: Monitor is interrupted | |
java.lang.InterruptedException: sleep interrupted | |
at java.lang.Thread.sleep(Native Method) | |
at org.apache.hadoop.hdfs.server.namenode.LeaseManager$Monitor.run(LeaseManager.java:362) | |
at java.lang.Thread.run(Thread.java:619) | |
10/10/07 20:27:54 INFO namenode.FSNamesystem: Number of transactions: 5 Total time for transactions(ms): 1Number of transactions batched in Syncs: 0 Number of syncs: 2 SyncTimes(ms): 5 2 | |
10/10/07 20:27:54 INFO ipc.Server: Stopping server on 33323 | |
10/10/07 20:27:54 INFO ipc.Server: IPC Server handler 1 on 33323: exiting | |
10/10/07 20:27:54 INFO ipc.Server: IPC Server handler 0 on 33323: exiting | |
10/10/07 20:27:54 INFO ipc.Server: IPC Server handler 2 on 33323: exiting | |
10/10/07 20:27:54 INFO ipc.Server: IPC Server handler 3 on 33323: exiting | |
10/10/07 20:27:54 INFO ipc.Server: IPC Server handler 5 on 33323: exiting | |
10/10/07 20:27:54 INFO ipc.Server: IPC Server handler 4 on 33323: exiting | |
10/10/07 20:27:54 INFO ipc.Server: IPC Server handler 6 on 33323: exiting | |
10/10/07 20:27:54 INFO ipc.Server: IPC Server handler 7 on 33323: exiting | |
10/10/07 20:27:54 INFO ipc.Server: IPC Server handler 8 on 33323: exiting | |
10/10/07 20:27:54 INFO ipc.Server: IPC Server handler 9 on 33323: exiting | |
10/10/07 20:27:54 INFO ipc.Server: Stopping IPC Server listener on 33323 | |
Oct 7, 2010 8:27:54 PM Repository retrieve | |
FINER: name=hadoop:service=NameNode,name=RpcActivityForPort33323 | |
10/10/07 20:27:54 DEBUG ipc.Client: closing ipc connection to localhost/127.0.0.1:33323: null | |
java.io.EOFException | |
at java.io.DataInputStream.readInt(DataInputStream.java:375) | |
at org.apache.hadoop.ipc.Client$Connection.receiveResponse(Client.java:501) | |
at org.apache.hadoop.ipc.Client$Connection.run(Client.java:446) | |
Oct 7, 2010 8:27:54 PM Repository remove | |
FINER: name=hadoop:service=NameNode,name=RpcActivityForPort33323 | |
10/10/07 20:27:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson: closed | |
10/10/07 20:27:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson: stopped, remaining connections 1 | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor unregisterMBean | |
FINER: Send delete notification of object hadoop:name=RpcActivityForPort33323,service=NameNode | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.unregistered hadoop:service=NameNode,name=RpcActivityForPort33323 | |
Oct 7, 2010 8:27:54 PM Repository retrieve | |
FINER: name=hadoop:service=NameNode,name=NameNodeActivity | |
Oct 7, 2010 8:27:54 PM Repository remove | |
FINER: name=hadoop:service=NameNode,name=NameNodeActivity | |
10/10/07 20:27:54 DEBUG ipc.Server: Checking for old call responses. | |
10/10/07 20:27:54 INFO ipc.Server: Stopping IPC Server Responder | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor unregisterMBean | |
FINER: Send delete notification of object hadoop:name=NameNodeActivity,service=NameNode | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.unregistered hadoop:service=NameNode,name=NameNodeActivity | |
Oct 7, 2010 8:27:54 PM Repository retrieve | |
FINER: name=hadoop:service=NameNode,name=FSNamesystemState | |
Oct 7, 2010 8:27:54 PM Repository remove | |
FINER: name=hadoop:service=NameNode,name=FSNamesystemState | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor unregisterMBean | |
FINER: Send delete notification of object hadoop:name=FSNamesystemState,service=NameNode | |
Oct 7, 2010 8:27:54 PM DefaultMBeanServerInterceptor sendNotification | |
FINER: JMX.mbean.unregistered hadoop:service=NameNode,name=FSNamesystemState | |
10/10/07 20:27:54 INFO hbase.HBaseTestingUtility: Minicluster is down | |
Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 63.027 sec <<< FAILURE! | |
Results : | |
Tests in error: | |
com.smartitengineering.cms.client.impl.AppTest | |
com.smartitengineering.cms.client.impl.AppTest | |
Tests run: 2, Failures: 0, Errors: 2, Skipped: 0 | |
10/10/07 20:27:54 ERROR hdfs.DFSClient: Exception closing file /user/hudson/hbase.version : org.apache.hadoop.ipc.RemoteException: java.io.IOException: File /user/hudson/hbase.version could only be replicated to 0 nodes, instead of 1 | |
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.getAdditionalBlock(FSNamesystem.java:1310) | |
at org.apache.hadoop.hdfs.server.namenode.NameNode.addBlock(NameNode.java:443) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.hadoop.ipc.RPC$Server.call(RPC.java:508) | |
at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:961) | |
at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:957) | |
at java.security.AccessController.doPrivileged(Native Method) | |
at javax.security.auth.Subject.doAs(Subject.java:396) | |
at org.apache.hadoop.ipc.Server$Handler.run(Server.java:955) | |
org.apache.hadoop.ipc.RemoteException: java.io.IOException: File /user/hudson/hbase.version could only be replicated to 0 nodes, instead of 1 | |
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.getAdditionalBlock(FSNamesystem.java:1310) | |
at org.apache.hadoop.hdfs.server.namenode.NameNode.addBlock(NameNode.java:443) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.hadoop.ipc.RPC$Server.call(RPC.java:508) | |
at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:961) | |
at org.apache.hadoop.ipc.Server$Handler$1.run(Server.java:957) | |
at java.security.AccessController.doPrivileged(Native Method) | |
at javax.security.auth.Subject.doAs(Subject.java:396) | |
at org.apache.hadoop.ipc.Server$Handler.run(Server.java:955) | |
at org.apache.hadoop.ipc.Client.call(Client.java:740) | |
at org.apache.hadoop.ipc.RPC$Invoker.invoke(RPC.java:220) | |
at $Proxy6.addBlock(Unknown Source) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
at java.lang.reflect.Method.invoke(Method.java:597) | |
at org.apache.hadoop.io.retry.RetryInvocationHandler.invokeMethod(RetryInvocationHandler.java:82) | |
at org.apache.hadoop.io.retry.RetryInvocationHandler.invoke(RetryInvocationHandler.java:59) | |
at $Proxy6.addBlock(Unknown Source) | |
at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream.locateFollowingBlock(DFSClient.java:3010) | |
at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream.nextBlockOutputStream(DFSClient.java:2885) | |
at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream.access$1900(DFSClient.java:2154) | |
at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream$DataStreamer.run(DFSClient.java:2343) | |
10/10/07 20:27:54 DEBUG hdfs.DFSClient: LeaseChecker is interrupted. | |
java.lang.InterruptedException: sleep interrupted | |
at java.lang.Thread.sleep(Native Method) | |
at org.apache.hadoop.hdfs.DFSClient$LeaseChecker.run(DFSClient.java:1088) | |
at java.lang.Thread.run(Thread.java:619) | |
10/10/07 20:27:54 DEBUG hdfs.DFSClient: Wait for lease checker to terminate | |
10/10/07 20:27:54 DEBUG ipc.Client: Stopping client | |
10/10/07 20:27:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson: closed | |
10/10/07 20:27:54 DEBUG ipc.Client: IPC Client (47) connection to localhost/127.0.0.1:33323 from hudson: stopped, remaining connections 0 | |
10/10/07 20:27:56 INFO zookeeper.ZooKeeper: Session: 0x12b8a4e625a0000 closed | |
10/10/07 20:27:56 DEBUG zookeeper.ZooKeeperWrapper: <localhost:/hbase,org.apache.hadoop.hbase.client.HConnectionManager>Closed connection with ZooKeeper; /hbase/root-region-server | |
[INFO] ------------------------------------------------------------------------ | |
[ERROR] BUILD FAILURE | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] There are test failures. | |
Please refer to /home/hudson/.hudson/jobs/imyousuf-smart-cms/workspace/smart-cms-client-impl/target/surefire-reports for the individual test results. | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] For more information, run Maven with the -e switch | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Total time: 1 minute 10 seconds | |
[INFO] Finished at: Thu Oct 07 20:27:56 HADT 2010 | |
[INFO] Final Memory: 31M/190M | |
[INFO] ------------------------------------------------------------------------ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment