See <https://builds.apache.org/job/HBase-TRUNK/5460/changes>

Changes:

[stack] HBASE-11855 HBase handbook chapter 18.9 out of date (Michael Tauscher)

[tedyu] HBASE-11878 
TestVisibilityLabelsWithDistributedLogReplay#testAddVisibilityLabelsOnRSRestart 
sometimes fails due to VisibilityController not yet initialized

------------------------------------------
[...truncated 1766 lines...]
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 24.036 sec - in 
org.apache.hadoop.hbase.io.encoding.TestLoadAndSwitchEncodeOnDisk
Running org.apache.hadoop.hbase.io.encoding.TestPrefixTree
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.787 sec - in 
org.apache.hadoop.hbase.io.encoding.TestPrefixTree
Running org.apache.hadoop.hbase.io.encoding.TestBufferedDataBlockEncoder
Tests run: 36, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 85.329 sec - 
in org.apache.hadoop.hbase.io.hfile.TestCacheOnWrite
Running org.apache.hadoop.hbase.io.encoding.TestEncodedSeekers
Tests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 94.986 sec - 
in org.apache.hadoop.hbase.io.hfile.TestHFileBlock
Running org.apache.hadoop.hbase.io.encoding.TestDataBlockEncoders
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 28.348 sec - in 
org.apache.hadoop.hbase.io.encoding.TestBufferedDataBlockEncoder
Running org.apache.hadoop.hbase.io.encoding.TestChangingEncoding
Tests run: 46, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 238.131 sec - 
in org.apache.hadoop.hbase.util.TestHBaseFsck
Running org.apache.hadoop.hbase.TestClusterBootOrder
Tests run: 46, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 516.07 sec - 
in org.apache.hadoop.hbase.client.TestAdmin
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 25.701 sec - in 
org.apache.hadoop.hbase.TestClusterBootOrder
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 46.616 sec - in 
org.apache.hadoop.hbase.io.encoding.TestChangingEncoding
Tests run: 20, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 128.054 sec - 
in org.apache.hadoop.hbase.io.encoding.TestEncodedSeekers
Tests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 240.762 sec - 
in org.apache.hadoop.hbase.io.encoding.TestDataBlockEncoders

Results :

Failed tests: 
  
TestRegionRebalancing.testRebalanceOnRegionServerNumberChange:131->assertRegionsAreBalanced:221
 After 5 attempts, region assignments were not balanced.

Tests run: 2043, Failures: 1, Errors: 0, Skipped: 19

[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] 
[INFO] HBase ............................................. SUCCESS [2.752s]
[INFO] HBase - Common .................................... SUCCESS [58.696s]
[INFO] HBase - Protocol .................................. SUCCESS [9.280s]
[INFO] HBase - Client .................................... SUCCESS [1:04.256s]
[INFO] HBase - Hadoop Compatibility ...................... SUCCESS [7.124s]
[INFO] HBase - Hadoop Two Compatibility .................. SUCCESS [5.977s]
[INFO] HBase - Prefix Tree ............................... SUCCESS [8.621s]
[INFO] HBase - Server .................................... FAILURE 
[1:03:41.838s]
[INFO] HBase - Testing Util .............................. SKIPPED
[INFO] HBase - Thrift .................................... SKIPPED
[INFO] HBase - Shell ..................................... SKIPPED
[INFO] HBase - Integration Tests ......................... SKIPPED
[INFO] HBase - Examples .................................. SKIPPED
[INFO] HBase - Assembly .................................. SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1:06:19.361s
[INFO] Finished at: Wed Sep 03 00:59:47 UTC 2014
[INFO] Final Memory: 39M/230M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-surefire-plugin:2.17:test 
(secondPartTestsExecution) on project hbase-server: There are test failures.
[ERROR] 
[ERROR] Please refer to 
<https://builds.apache.org/job/HBase-TRUNK/ws/hbase-server/target/surefire-reports>
 for the individual test results.
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please 
read the following articles:
[ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :hbase-server
Build step 'Invoke top-level Maven targets' marked build as failure
Performing Post build task...
Match found for :.* : True
Logical operation result is TRUE
Running script  :   ZOMBIE_TESTS_COUNT=`jps | grep surefirebooter | wc -l`
  if [[ $ZOMBIE_TESTS_COUNT != 0 ]] ; then
    #It seems sometimes the tests are not dying immediately. Let's give them 10s
    echo "Suspicious java process found - waiting 10s to see if there are just 
slow to stop"
    sleep 10   
    ZOMBIE_TESTS_COUNT=`jps | grep surefirebooter | wc -l`
    if [[ $ZOMBIE_TESTS_COUNT != 0 ]] ; then
      echo "There are $ZOMBIE_TESTS_COUNT zombie tests, they should have been 
killed by surefire but survived"
      echo "************ BEGIN zombies jstack extract"
      ZB_STACK=`jps | grep surefirebooter | cut -d ' ' -f 1 | xargs -n 1 jstack 
| grep ".test" | grep "\.java"`
      jps | grep surefirebooter | cut -d ' ' -f 1 | xargs -n 1 jstack
      echo "************ END  zombies jstack extract"
      JIRA_COMMENT="$JIRA_COMMENT

     {color:red}-1 core zombie tests{color}.  There are ${ZOMBIE_TESTS_COUNT} 
zombie test(s): ${ZB_STACK}"
      BAD=1
      jps | grep surefirebooter | cut -d ' ' -f 1 | xargs kill -9
    else
      echo "We're ok: there is no zombie test, but some tests took some time to 
stop"
    fi
  else
    echo "We're ok: there is no zombie test"
  fi
[HBase-TRUNK] $ /bin/bash -xe /tmp/hudson2578548775648703985.sh
++ jps
++ grep surefirebooter
++ wc -l
+ ZOMBIE_TESTS_COUNT=1
+ [[ 1 != 0 ]]
+ echo 'Suspicious java process found - waiting 10s to see if there are just 
slow to stop'
Suspicious java process found - waiting 10s to see if there are just slow to 
stop
+ sleep 10
++ jps
++ grep surefirebooter
++ wc -l
+ ZOMBIE_TESTS_COUNT=1
+ [[ 1 != 0 ]]
+ echo 'There are 1 zombie tests, they should have been killed by surefire but 
survived'
There are 1 zombie tests, they should have been killed by surefire but survived
+ echo '************ BEGIN zombies jstack extract'
************ BEGIN zombies jstack extract
++ jps
++ grep surefirebooter
++ cut -d ' ' -f 1
++ xargs -n 1 jstack
++ grep '\.java'
++ grep .test
+ ZB_STACK='    at 
org.apache.hadoop.io.compress.TestCodec.testGzipLongOverflow(TestCodec.java:813)'
+ jps
+ grep surefirebooter
+ cut -d ' ' -f 1
+ xargs -n 1 jstack
2014-09-03 01:00:01
Full thread dump Java HotSpot(TM) 64-Bit Server VM (20.45-b01 mixed mode):

"Attach Listener" daemon prio=10 tid=0x00007f1aac002000 nid=0x4241 waiting on 
condition [0x0000000000000000]
   java.lang.Thread.State: RUNNABLE

"Low Memory Detector" daemon prio=10 tid=0x00007f1ab40cb800 nid=0x41cc runnable 
[0x0000000000000000]
   java.lang.Thread.State: RUNNABLE

"C2 CompilerThread1" daemon prio=10 tid=0x00007f1ab40c7000 nid=0x41cb waiting 
on condition [0x0000000000000000]
   java.lang.Thread.State: RUNNABLE

"C2 CompilerThread0" daemon prio=10 tid=0x00007f1ab40c4800 nid=0x41ca waiting 
on condition [0x0000000000000000]
   java.lang.Thread.State: RUNNABLE

"Signal Dispatcher" daemon prio=10 tid=0x00007f1ab40c2800 nid=0x41c9 runnable 
[0x0000000000000000]
   java.lang.Thread.State: RUNNABLE

"Finalizer" daemon prio=10 tid=0x00007f1ab40a7000 nid=0x41c8 in Object.wait() 
[0x00007f1aaa54c000]
   java.lang.Thread.State: WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000fdaf8010> (a java.lang.ref.ReferenceQueue$Lock)
        at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:118)
        - locked <0x00000000fdaf8010> (a java.lang.ref.ReferenceQueue$Lock)
        at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:134)
        at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:171)

"Reference Handler" daemon prio=10 tid=0x00007f1ab40a5000 nid=0x41c7 in 
Object.wait() [0x00007f1aaa64d000]
   java.lang.Thread.State: WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000fdaf8000> (a java.lang.ref.Reference$Lock)
        at java.lang.Object.wait(Object.java:485)
        at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
        - locked <0x00000000fdaf8000> (a java.lang.ref.Reference$Lock)

"main" prio=10 tid=0x00007f1ab4008000 nid=0x41b8 runnable [0x00007f1ab86eb000]
   java.lang.Thread.State: RUNNABLE
        at java.util.zip.Deflater.deflateBytes(Native Method)
        at java.util.zip.Deflater.deflate(Deflater.java:306)
        - locked <0x00000000f1aa0d90> (a java.util.zip.ZStreamRef)
        at 
java.util.zip.DeflaterOutputStream.deflate(DeflaterOutputStream.java:153)
        at 
java.util.zip.DeflaterOutputStream.write(DeflaterOutputStream.java:112)
        at java.util.zip.GZIPOutputStream.write(GZIPOutputStream.java:72)
        - locked <0x00000000f1aa08b0> (a java.util.zip.GZIPOutputStream)
        at sun.nio.cs.StreamEncoder.writeBytes(StreamEncoder.java:202)
        at sun.nio.cs.StreamEncoder.implWrite(StreamEncoder.java:263)
        at sun.nio.cs.StreamEncoder.write(StreamEncoder.java:106)
        - locked <0x00000000f1aa0890> (a java.io.OutputStreamWriter)
        at java.io.OutputStreamWriter.write(OutputStreamWriter.java:190)
        at java.io.BufferedWriter.write(BufferedWriter.java:170)
        - locked <0x00000000f1aa0890> (a java.io.OutputStreamWriter)
        at java.io.Writer.write(Writer.java:110)
        at 
org.apache.hadoop.io.compress.TestCodec.testGzipLongOverflow(TestCodec.java:813)
        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:47)
        at 
org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
        at 
org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
        at 
org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
        at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
        at 
org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
        at 
org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
        at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
        at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
        at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
        at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
        at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
        at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
        at 
org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264)
        at 
org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153)
        at 
org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124)
        at 
org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200)
        at 
org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153)
        at 
org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103)

"VM Thread" prio=10 tid=0x00007f1ab409e800 nid=0x41c6 runnable 

"GC task thread#0 (ParallelGC)" prio=10 tid=0x00007f1ab401b000 nid=0x41b9 
runnable 

"GC task thread#1 (ParallelGC)" prio=10 tid=0x00007f1ab401d000 nid=0x41ba 
runnable 

"GC task thread#2 (ParallelGC)" prio=10 tid=0x00007f1ab401f000 nid=0x41bb 
runnable 

"GC task thread#3 (ParallelGC)" prio=10 tid=0x00007f1ab4020800 nid=0x41bc 
runnable 

"GC task thread#4 (ParallelGC)" prio=10 tid=0x00007f1ab4022800 nid=0x41bd 
runnable 

"GC task thread#5 (ParallelGC)" prio=10 tid=0x00007f1ab4024000 nid=0x41be 
runnable 

"GC task thread#6 (ParallelGC)" prio=10 tid=0x00007f1ab4026000 nid=0x41bf 
runnable 

"GC task thread#7 (ParallelGC)" prio=10 tid=0x00007f1ab4028000 nid=0x41c0 
runnable 

"GC task thread#8 (ParallelGC)" prio=10 tid=0x00007f1ab4029800 nid=0x41c1 
runnable 

"GC task thread#9 (ParallelGC)" prio=10 tid=0x00007f1ab402b800 nid=0x41c2 
runnable 

"GC task thread#10 (ParallelGC)" prio=10 tid=0x00007f1ab402d800 nid=0x41c3 
runnable 

"GC task thread#11 (ParallelGC)" prio=10 tid=0x00007f1ab402f000 nid=0x41c4 
runnable 

"GC task thread#12 (ParallelGC)" prio=10 tid=0x00007f1ab4031000 nid=0x41c5 
runnable 

"VM Periodic Task Thread" prio=10 tid=0x00007f1ab40df000 nid=0x41cd waiting on 
condition 

JNI global references: 936

+ echo '************ END  zombies jstack extract'
************ END  zombies jstack extract
+ JIRA_COMMENT='

     {color:red}-1 core zombie tests{color}.  There are 1 zombie test(s):       
at 
org.apache.hadoop.io.compress.TestCodec.testGzipLongOverflow(TestCodec.java:813)'
+ BAD=1
+ jps
+ grep surefirebooter
+ cut -d ' ' -f 1
+ xargs kill -9
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Archiving artifacts
Sending artifact delta relative to HBase-TRUNK #5454
Archived 1786 artifacts
Archive block size is 32768
Received 75 blocks and 557632116 bytes
Compression is 0.4%
Took 3 min 24 sec
Recording test results
Updating HBASE-11878
Updating HBASE-11855

Reply via email to