This failed TestAtomicOperation (ominously). I tried it local and all passes. Let me try this build again and see if its still an issue. St.Ack
On Mon, Mar 12, 2012 at 3:15 PM, Apache Jenkins Server <[email protected]> wrote: > See <https://builds.apache.org/job/HBase-TRUNK/2676/changes> > > Changes: > > [stack] HBASE-5399 Cut the link between the client and the zookeeper ensemble > > [stack] HBASE-5562 test-patch.sh reports a javadoc warning when there are no > new javadoc warnings > > [mbautin] [jira] [HBASE-5292] Prevent counting getSize on compactions > > Author: Zhiqiu Kong > > Summary: > Added two separate metrics for both get() and next(). This is done by > refactoring on internal next() API. To be more specific, only Get.get() > and ResultScanner.next() passes the metric name ("getsize" and > "nextsize" repectively) to > HRegion::RegionScanner::next(List<KeyValue>, String) > > This will eventually hit StoreScanner()::next((List<KeyValue>, > int, String) where the metrics are counted. > > And their call paths are: > > 1) Get > > HTable::get(final Get get) > => HRegionServer::get(byte [] regionName, Get get) > => HRegion::get(final Get get, final Integer lockid) > => HRegion::get(final Get get) [pass METRIC_GETSIZE to the > callee] > > => HRegion::RegionScanner::next(List<KeyValue> outResults, String > metric) > => HRegion::RegionScanner::next(List<KeyValue> outResults, int limit, > String metric) > => HRegion::RegionScanner::nextInternal(int limit, String metric) > => KeyValueHeap::next(List<KeyValue> result, int limit, String > metric) > => StoreScanner::next(List<KeyValue> outResult, int limit, String > metric) > > 2) Next > > HTable::ClientScanner::next() > => ScannerCallable::call() > => HRegionServer::next(long scannerId) > => HRegionServer::next(final long scannerId, int nbRows) [pass > METRIC_NEXTSIZE to the callee] > > => HRegion::RegionScanner::next(List<KeyValue> outResults, String > metric) > => HRegion::RegionScanner::next(List<KeyValue> outResults, int limit, > String metric) > => HRegion::RegionScanner::nextInternal(int limit, String metric) > => KeyValueHeap::next(List<KeyValue> result, int limit, String > metric) > => StoreScanner::next(List<KeyValue> outResult, int limit, String > metric) > > Test Plan: > 1. Passed unit tests. > 2. Created a testcase TestRegionServerMetrics::testGetNextSize to > guarantee: > * Get/Next contributes to getsize/nextsize metrics > * Both getsize/nextsize are per Column Family > * Flush/compaction won't affect these two metrics > > Reviewed By: mbautin > > Reviewers: Kannan, mbautin, Liyin, JIRA > > CC: Kannan, mbautin, Liyin, zhiqiu > > Differential Revision: https://reviews.facebook.net/D1617 > > [stack] HBASE-5535 Make the functions in task monitor synchronized > > [stack] HBASE-5538 A metric to measure the size of the response queue in the > hbase rpc server > > [stack] HBASE-5555 add a pointer to a dns verification utility in hbase > book/dns > > [mbautin] [jira] [HBASE-4542] Add filter info to slow query logging > > Author: Zhiqiu Kong > > Summary: > The original 89-fb diff is: https://reviews.facebook.net/D1263 > > Slow opertaion log does not provide enough information when a filter is > present. The followings are done to add the filter info: > > 1) Added toString() method for filters inheriting FilterBase, this > affect 22 filters and their subclasses. The info added includes the > filter's name and its members. For example, for TimestampsFilter, we'll > output its class name as well as the defined timestamps. > > 2) Added a field 'filter' in Get::toMap() and Scan::toMap() to enable > the logging of filter info. > > Task ID: #750975 > > Blame Rev: > > Test Plan: > 1. Run and passed unit-tests to make sure it does not break things > > 2. Run kannan's script to trigger the slow operation logging, checked > for each filter to make sure the filter info was logged. To be more > detailed, the output log are as following (only 'filter' filed is put > here for ease of reading): > > "filter":"TimestampsFilter (3/3): [2, 3, 5]" > "filter":"TimestampsFilter (5/6): [2, 3, 5, 7, 11]" > "filter":"ColumnPrefixFilter col2" > "filter":"ColumnRangeFilter [col2a, col2b]" > "filter":"ColumnCountGetFilter 8" > "filter":"ColumnPaginationFilter (4, 4)" > "filter":"InclusiveStopFilter row" > "filter":"PrefixFilter row" > "filter":"PageFilter 1" > "filter":"SkipFilter TimestampsFilter (1/1): [1000]" > "filter":"WhileMatchFilter TimestampsFilter (3/3): [2, 3, 5]" > "filter":"KeyOnlyFilter" > "filter":"FirstKeyOnlyFilter" > "filter":"MultipleColumnPrefixFilter (3/3): [a, b, c]" > "filter":"DependentColumnFilter (family, qualifier, true, LESS, value)" > "filter":"FamilyFilter (LESS, value)" > "filter":"QualifierFilter (LESS, value)" > "filter":"RowFilter (LESS, value)" > "filter":"ValueFilter (LESS, value)" > "filter":"KeyOnlyFilter" > "filter":"FirstKeyOnlyFilter" > "filter":"SingleColumnValueFilter (family, qualifier, EQUAL, value)" > "filter":"SingleColumnValueExcludeFilter (family, qualifier, EQUAL, > value)" > "filter":"FilterList AND (2/2): [KeyOnlyFilter, FirstKeyOnlyFilter]" > Please check ~zhiqiu/Codes/scripts/testFilter.rb for the testing script. > > 3. Added unit test cases to TestOperation to verify the filters' > toString() method works well. > > Reviewed By: mbautin > > Reviewers: Kannan, madhuvaidya, mbautin, JIRA > > CC: Kannan, madhuvaidya, mbautin, zhiqiu, stack > > Differential Revision: https://reviews.facebook.net/D1539 > > [stack] HBASE-5552 Clean up our jmx view; its a bit of a mess > > ------------------------------------------ > [...truncated 2065 lines...] > Tests run: 45, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 17.104 sec > Running > org.apache.hadoop.hbase.coprocessor.TestRegionServerCoprocessorExceptionWithAbort > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 13.814 sec > Running > org.apache.hadoop.hbase.coprocessor.TestRegionServerCoprocessorExceptionWithRemove > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 16.521 sec > Running org.apache.hadoop.hbase.regionserver.wal.TestHLogSplit > Tests run: 30, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 248.622 sec > Running org.apache.hadoop.hbase.coprocessor.TestWALObserver > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 13.672 sec > Running org.apache.hadoop.hbase.coprocessor.TestMasterObserver > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 26.946 sec > Running org.apache.hadoop.hbase.coprocessor.TestCoprocessorEndpoint > Tests run: 3, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 28.484 sec > Running > org.apache.hadoop.hbase.coprocessor.TestMasterCoprocessorExceptionWithAbort > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 11.432 sec > Running > org.apache.hadoop.hbase.coprocessor.TestMasterCoprocessorExceptionWithRemove > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 15.008 sec > Running org.apache.hadoop.hbase.coprocessor.TestRegionObserverBypass > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 12.049 sec > Running org.apache.hadoop.hbase.coprocessor.TestRegionObserverInterface > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 29.556 sec > Running org.apache.hadoop.hbase.TestGlobalMemStoreSize > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 15.226 sec > Running org.apache.hadoop.hbase.mapred.TestTableInputFormat > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 22.459 sec > Running org.apache.hadoop.hbase.mapred.TestTableMapReduce > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 64.684 sec > Running org.apache.hadoop.hbase.mapreduce.TestMulitthreadedTableMapper > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 86.672 sec > Running org.apache.hadoop.hbase.mapreduce.TestTableMapReduce > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 97.602 sec > Running > org.apache.hadoop.hbase.mapreduce.TestLoadIncrementalHFilesSplitRecovery > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 103.561 sec > Running org.apache.hadoop.hbase.regionserver.wal.TestLogRolling > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 434.233 sec > Running org.apache.hadoop.hbase.mapreduce.TestImportTsv > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 82.644 sec > Running org.apache.hadoop.hbase.mapreduce.TestTimeRangeMapRed > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 43.946 sec > Running org.apache.hadoop.hbase.mapreduce.TestLoadIncrementalHFiles > Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 38.144 sec > Running org.apache.hadoop.hbase.mapreduce.TestHFileOutputFormat > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 223.738 sec > Running org.apache.hadoop.hbase.TestAcidGuarantees > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 100.249 sec > Running org.apache.hadoop.hbase.mapreduce.TestImportExport > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 106.753 sec > Running org.apache.hadoop.hbase.catalog.TestMetaReaderEditorNoCluster > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.213 sec > Running org.apache.hadoop.hbase.thrift2.TestThriftHBaseServiceHandler > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 13.027 sec > Running org.apache.hadoop.hbase.catalog.TestCatalogTracker > Tests run: 9, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 6.552 sec > Running org.apache.hadoop.hbase.catalog.TestMetaReaderEditor > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 21.243 sec > Running org.apache.hadoop.hbase.client.TestTimestampsFilter > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 22.897 sec > Running org.apache.hadoop.hbase.catalog.TestCatalogTrackerOnCluster > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 80.144 sec > Running org.apache.hadoop.hbase.client.TestShell > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 92.894 sec > Running org.apache.hadoop.hbase.client.TestFromClientSide > Tests run: 55, Failures: 0, Errors: 0, Skipped: 3, Time elapsed: 172.401 sec > Running org.apache.hadoop.hbase.client.TestHCM > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 15.383 sec > Running org.apache.hadoop.hbase.client.TestInstantSchemaChangeSplit > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 120.775 sec > Running org.apache.hadoop.hbase.client.TestScannerTimeout > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 43.984 sec > Running org.apache.hadoop.hbase.client.TestInstantSchemaChange > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 202.122 sec > Running org.apache.hadoop.hbase.client.TestMetaScanner > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 13.518 sec > Running org.apache.hadoop.hbase.client.TestHTableUtil > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 14.798 sec > Running org.apache.hadoop.hbase.client.TestHTablePool$TestHTableReusablePool > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.085 sec > Running org.apache.hadoop.hbase.client.TestMetaMigrationRemovingHTD > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 24.748 sec > Running > org.apache.hadoop.hbase.client.TestHTablePool$TestHTableThreadLocalPool > Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 23.346 sec > Running org.apache.hadoop.hbase.client.replication.TestReplicationAdmin > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.903 sec > Running org.apache.hadoop.hbase.client.TestInstantSchemaChangeFailover > Running org.apache.hadoop.hbase.client.TestMultipleTimestamps > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 33.467 sec > Tests run: 4, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 130.549 sec > Running org.apache.hadoop.hbase.metrics.TestMetricsMBeanBase > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.12 sec > Running org.apache.hadoop.hbase.client.TestMultiParallel > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 33.406 sec > Running org.apache.hadoop.hbase.rest.TestGzipFilter > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 15.094 sec > Running org.apache.hadoop.hbase.constraint.TestConstraint > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 28.424 sec > Running org.apache.hadoop.hbase.mapreduce.TestTableInputFormatScan > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 565.682 sec > Running org.apache.hadoop.hbase.rest.TestMultiRowResource > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 15.331 sec > Running org.apache.hadoop.hbase.rest.TestScannersWithFilters > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 17.729 sec > Running org.apache.hadoop.hbase.rest.TestRowResource > Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 14.713 sec > Running org.apache.hadoop.hbase.rest.client.TestRemoteAdmin > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 15.634 sec > Running org.apache.hadoop.hbase.rest.TestVersionResource > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 12.598 sec > Running org.apache.hadoop.hbase.rest.client.TestRemoteTable > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 14.055 sec > Running org.apache.hadoop.hbase.rest.TestStatusResource > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 11.98 sec > Running org.apache.hadoop.hbase.rest.TestScannerResource > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 28.844 sec > Running org.apache.hadoop.hbase.rest.TestTableResource > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 22.02 sec > Running org.apache.hadoop.hbase.rest.TestSchemaResource > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 19.717 sec > Running org.apache.hadoop.hbase.io.encoding.TestLoadAndSwitchEncodeOnDisk > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 24.679 sec > Running org.apache.hadoop.hbase.thrift.TestThriftServer > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 44.545 sec > Running org.apache.hadoop.hbase.client.TestAdmin > Tests run: 36, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 173.554 sec > Running org.apache.hadoop.hbase.io.encoding.TestUpgradeFromHFileV1ToEncoding > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 84.515 sec > Running org.apache.hadoop.hbase.io.hfile.TestHFileSeek > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 8.336 sec > Running org.apache.hadoop.hbase.io.encoding.TestDataBlockEncoders > Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 137.86 sec > Running org.apache.hadoop.hbase.io.hfile.slab.TestSlabCache > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 21.741 sec > Running org.apache.hadoop.hbase.io.hfile.TestChecksum > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.938 sec > Running org.apache.hadoop.hbase.io.hfile.slab.TestSingleSizeCache > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 29.858 sec > Running org.apache.hadoop.hbase.io.hfile.TestLruBlockCache > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.766 sec > Running org.apache.hadoop.hbase.io.hfile.TestHFileBlockIndex > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 10.474 sec > Running org.apache.hadoop.hbase.io.hfile.TestFixedFileTrailer > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.655 sec > Running org.apache.hadoop.hbase.io.hfile.TestHFileBlockCompatibility > Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.216 sec > Running org.apache.hadoop.hbase.io.hfile.TestHFilePerformance > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.66 sec > Running org.apache.hadoop.hbase.io.hfile.TestHFileBlock > Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 48.02 sec > Running org.apache.hadoop.hbase.io.hfile.TestForceCacheImportantBlocks > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 52.492 sec > Running org.apache.hadoop.hbase.io.encoding.TestChangingEncoding > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 248.367 sec > Running org.apache.hadoop.hbase.avro.TestAvroServer > Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 27.631 sec > Running > org.apache.hadoop.hbase.replication.regionserver.TestReplicationSourceManager > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.286 sec > Running org.apache.hadoop.hbase.io.hfile.TestCacheOnWrite > Tests run: 36, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 32.039 sec > Running org.apache.hadoop.hbase.replication.regionserver.TestReplicationSink > Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 13.764 sec > Running org.apache.hadoop.hbase.replication.TestReplicationSource > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.775 sec > Running org.apache.hadoop.hbase.replication.TestReplicationPeer > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.767 sec > Running org.apache.hadoop.hbase.replication.TestMultiSlaveReplication > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 41.175 sec > Running org.apache.hadoop.hbase.ipc.TestDelayedRpc > Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.672 sec > Running org.apache.hadoop.hbase.TestZooKeeper > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 24.964 sec > Running org.apache.hadoop.hbase.replication.TestMasterReplication > Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 63.811 sec > Running org.apache.hadoop.hbase.thrift.TestThriftServerCmdLine > Tests run: 20, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 386.037 sec > Running org.apache.hadoop.hbase.TestHBaseTestingUtility > Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 59.107 sec > Running org.apache.hadoop.hbase.replication.TestReplication > Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 114.495 sec > > Results : > > Failed tests: > testMultiRowMutationMultiThreads(org.apache.hadoop.hbase.regionserver.TestAtomicOperation): > expected:<0> but was:<2> > > Tests run: 904, Failures: 1, Errors: 0, Skipped: 10 > > [INFO] > ------------------------------------------------------------------------ > [INFO] BUILD FAILURE > [INFO] > ------------------------------------------------------------------------ > [INFO] Total time: 36:45.300s > [INFO] Finished at: Mon Mar 12 22:14:32 UTC 2012 > [INFO] Final Memory: 40M/456M > [INFO] > ------------------------------------------------------------------------ > [ERROR] Failed to execute goal > org.apache.maven.plugins:maven-surefire-plugin:2.12-TRUNK-HBASE-2:test > (secondPartTestsExecution) on project hbase: There are test failures. > [ERROR] > [ERROR] Please refer to > <https://builds.apache.org/job/HBase-TRUNK/ws/trunk/target/surefire-reports> > for the individual test results. > [ERROR] -> [Help 1] > org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute > goal org.apache.maven.plugins:maven-surefire-plugin:2.12-TRUNK-HBASE-2:test > (secondPartTestsExecution) on project hbase: There are test failures. > > Please refer to > <https://builds.apache.org/job/HBase-TRUNK/ws/trunk/target/surefire-reports> > for the individual test results. > at > org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:213) > at > org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153) > at > org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145) > at > org.apache.maven.lifecycle.internal.MojoExecutor.executeForkedExecutions(MojoExecutor.java:365) > at > org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:199) > at > org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153) > at > org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145) > at > org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84) > at > org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59) > at > org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183) > at > org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161) > at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:319) > at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156) > at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537) > at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196) > at org.apache.maven.cli.MavenCli.main(MavenCli.java:141) > 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.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290) > at > org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230) > at > org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409) > at > org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352) > Caused by: org.apache.maven.plugin.MojoFailureException: There are test > failures. > > Please refer to > <https://builds.apache.org/job/HBase-TRUNK/ws/trunk/target/surefire-reports> > for the individual test results. > at > org.apache.maven.plugin.surefire.SurefireHelper.reportExecution(SurefireHelper.java:87) > at > org.apache.maven.plugin.surefire.SurefirePlugin.writeSummary(SurefirePlugin.java:651) > at > org.apache.maven.plugin.surefire.SurefirePlugin.handleSummary(SurefirePlugin.java:625) > at > org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:137) > at > org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:98) > at > org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101) > at > org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209) > ... 23 more > [ERROR] > [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 > Build step 'Invoke top-level Maven targets' marked build as failure > Archiving artifacts > Updating HBASE-5535 > Updating HBASE-5552 > Updating HBASE-5292 > Updating HBASE-5555 > Updating HBASE-4542 > Updating HBASE-5562 > Updating HBASE-5538 > Updating HBASE-5399 > Recording test results >
