You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2014/04/16 02:37:20 UTC

[1/3] git commit: ACCUMULO-2171 Create sunny profile for bare-minimum tests

Repository: accumulo
Updated Branches:
  refs/heads/master 1dd7d219d -> 3056d89f2


ACCUMULO-2171 Create sunny profile for bare-minimum tests

  Also sort poms, and remove unneeded dependency from tests
  Be more tolerant of test timing


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/93aee766
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/93aee766
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/93aee766

Branch: refs/heads/master
Commit: 93aee7662b7fce724e3ad65184c65882b3fda837
Parents: d77cd3f
Author: Christopher Tubbs <ct...@apache.org>
Authored: Tue Apr 15 13:58:26 2014 -0400
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Tue Apr 15 17:11:36 2014 -0400

----------------------------------------------------------------------
 pom.xml       | 10 +++++++++-
 start/pom.xml |  2 ++
 test/pom.xml  | 23 +++++++++--------------
 3 files changed, 20 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/93aee766/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f769a71..10dfcc8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -549,7 +549,7 @@
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-release-plugin</artifactId>
           <configuration>
-            <arguments>-P apache-release,thrift,assemble,docs -Dit.test=ReadWriteIT,SimpleProxyIT,ExamplesIT -DfailIfNoTests=false</arguments>
+            <arguments>-P apache-release,thrift,assemble,docs,sunny -Dtimeout.factor=2</arguments>
             <autoVersionSubmodules>true</autoVersionSubmodules>
             <goals>clean deploy</goals>
             <preparationGoals>clean verify</preparationGoals>
@@ -1031,6 +1031,14 @@
       </properties>
     </profile>
     <profile>
+      <!-- Minimal testing profile. (a.k.a. SunnyDay) -->
+      <id>sunny</id>
+      <properties>
+        <failIfNoTests>false</failIfNoTests>
+        <it.test>ReadWriteIT,SimpleProxyIT,ExamplesIT</it.test>
+      </properties>
+    </profile>
+    <profile>
       <!-- Generate cobertura reports with site.
            Activate with -P cobertura -->
       <id>cobertura</id>

http://git-wip-us.apache.org/repos/asf/accumulo/blob/93aee766/start/pom.xml
----------------------------------------------------------------------
diff --git a/start/pom.xml b/start/pom.xml
index 8747930..fb0a5ed 100644
--- a/start/pom.xml
+++ b/start/pom.xml
@@ -50,7 +50,9 @@
     <dependency>
       <groupId>com.google.guava</groupId>
       <artifactId>guava</artifactId>
+      <?SORTPOM IGNORE?>
       <version>14.0.1</version><!--$NO-MVN-MAN-VER$-->
+      <?SORTPOM RESUME?>
       <scope>test</scope>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/accumulo/blob/93aee766/test/pom.xml
----------------------------------------------------------------------
diff --git a/test/pom.xml b/test/pom.xml
index 6ebce1a..ed46117 100644
--- a/test/pom.xml
+++ b/test/pom.xml
@@ -147,11 +147,6 @@
       <scope>test</scope>
     </dependency>
     <dependency>
-      <groupId>org.apache.accumulo</groupId>
-      <artifactId>accumulo-maven-plugin</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
       <groupId>org.apache.hadoop</groupId>
       <artifactId>hadoop-minicluster</artifactId>
       <scope>test</scope>
@@ -190,15 +185,15 @@
             </excludes>
           </configuration>
         </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-failsafe-plugin</artifactId>
-        <configuration>
-          <systemPropertyVariables>
-            <timeout.factor>${timeout.factor}</timeout.factor>
-          </systemPropertyVariables>
-        </configuration>
-      </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-failsafe-plugin</artifactId>
+          <configuration>
+            <systemPropertyVariables>
+              <timeout.factor>${timeout.factor}</timeout.factor>
+            </systemPropertyVariables>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
   </build>


[3/3] git commit: Merge remote-tracking branch 'origin/1.6.0-SNAPSHOT'

Posted by ct...@apache.org.
Merge remote-tracking branch 'origin/1.6.0-SNAPSHOT'


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/3056d89f
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/3056d89f
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/3056d89f

Branch: refs/heads/master
Commit: 3056d89f291f3172f7b4e2c106af30574fc22d2f
Parents: 1dd7d21 73fae63
Author: Christopher Tubbs <ct...@apache.org>
Authored: Tue Apr 15 20:35:00 2014 -0400
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Tue Apr 15 20:35:00 2014 -0400

----------------------------------------------------------------------
 CHANGES       | 12 ++++++++++--
 pom.xml       | 10 +++++++++-
 start/pom.xml |  2 ++
 test/pom.xml  | 23 +++++++++--------------
 4 files changed, 30 insertions(+), 17 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/3056d89f/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/accumulo/blob/3056d89f/start/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/accumulo/blob/3056d89f/test/pom.xml
----------------------------------------------------------------------


[2/3] git commit: ACCUMULO-2171 Update CHANGES for 1.6.0-RC2

Posted by ct...@apache.org.
ACCUMULO-2171 Update CHANGES for 1.6.0-RC2


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/73fae636
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/73fae636
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/73fae636

Branch: refs/heads/master
Commit: 73fae6368f414d4b57aa82a0df50437ca11de462
Parents: 93aee76
Author: Christopher Tubbs <ct...@apache.org>
Authored: Tue Apr 15 20:32:41 2014 -0400
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Tue Apr 15 20:32:41 2014 -0400

----------------------------------------------------------------------
 CHANGES | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/73fae636/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index bacad69..ef674a6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -157,7 +157,7 @@ Release Notes - Accumulo - Version 1.6.0
     * [ACCUMULO-1345] - Provide feedback that a compaction is "stuck"
     * [ACCUMULO-1356] - shell tables command does not paginate
     * [ACCUMULO-1370] - tweak rat check excludes to work on a configured workspace
-    * [ACCUMULO-1379] -  PermGen leak
+    * [ACCUMULO-1379] - PermGen leak
     * [ACCUMULO-1382] - Pair incorrectly assumes its components are Comparable
     * [ACCUMULO-1407] - Fix documentation for deleterows
     * [ACCUMULO-1410] - ZooSession.connect barely adheres to timeout
@@ -458,8 +458,11 @@ Release Notes - Accumulo - Version 1.6.0
     * [ACCUMULO-2631] - Excessively large number of minutes for trace page prints exception
     * [ACCUMULO-2648] - AccumuloInputFormat referencing incorrect RangeInputSplit
     * [ACCUMULO-2651] - Maven build error running rat check
-    * [ACCUMULO-2659] - Incompatible map reduce changes in 1.6.0
+    * [ACCUMULO-2659] - Incompatible API changes in 1.6.0
     * [ACCUMULO-2660] - InvocationTargetException during ContinuousIngest
+    * [ACCUMULO-2665] - NoClassDefFound building against Hadoop 2.4.0
+    * [ACCUMULO-2667] - annoying log message
+    * [ACCUMULO-2668] - slow WAL writes
 
 ** Improvement
     * [ACCUMULO-112] - Investigate partitioning in memory map by locality group
@@ -619,6 +622,7 @@ Release Notes - Accumulo - Version 1.6.0
     * [ACCUMULO-2010] - Remove resource leak warnings
     * [ACCUMULO-2113] - Verify that The Hammer approach to resource leak is a viable short term fix
     * [ACCUMULO-2148] - Verify upgrade 1.5 to 1.6 works
+    * [ACCUMULO-2149] - Verify mappers run locally in 1.6
     * [ACCUMULO-2160] - Run findbugs for 1.6
     * [ACCUMULO-2254] - Remove run_findbugs.sh
     * [ACCUMULO-2283] - Remove server-extras module
@@ -629,6 +633,7 @@ Release Notes - Accumulo - Version 1.6.0
     * [ACCUMULO-2616] - Bump plugin versions and parent POM version
     * [ACCUMULO-2652] - Build warnings from missing plugin version
     * [ACCUMULO-2653] - Remove useless javadocs
+    * [ACCUMULO-2670] - Corrupt license header in shelltest.txt
 
 ** Test
     * [ACCUMULO-1981] - BloomFilterLayerLookupTest does not run
@@ -640,6 +645,9 @@ Release Notes - Accumulo - Version 1.6.0
     * [ACCUMULO-2508] - Security randomwalk fails "BAD_CREDENTIALS - Username or Password is Invalid"
     * [ACCUMULO-2543] - cacheBlock should be closed in BlockIndexTest
     * [ACCUMULO-2558] - Improve unit test coverage for server gc classes
+    * [ACCUMULO-2621] - Masters not restarting during concurrent randomwalk
+    * [ACCUMULO-2657] - Shard randomwalk fails for 1.6.0
+    * [ACCUMULO-2666] - provide a scaling factor for timeouts on ITs
 
 Release Notes - Accumulo - Version 1.5.0