You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by md...@apache.org on 2014/03/24 18:35:21 UTC

[1/3] git commit: ACCUMULO-2169 Replace 1.4.5 with 1.4.6-SNAPSHOT

Repository: accumulo
Updated Branches:
  refs/heads/1.4.5-RC1 [created] e022d7614


ACCUMULO-2169 Replace 1.4.5 with 1.4.6-SNAPSHOT

find . -type f -not -path './.git/*' -exec sed -i 's/1[.]4[.]5/1.4.6-SNAPSHOT/' {} \;


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

Branch: refs/heads/1.4.5-RC1
Commit: e022d761482e5d9b42adfbe30099c74c466751f1
Parents: 81babc0
Author: Mike Drob <md...@cloudera.com>
Authored: Thu Jan 9 18:34:14 2014 -0800
Committer: Mike Drob <md...@cloudera.com>
Committed: Mon Mar 24 13:34:57 2014 -0400

----------------------------------------------------------------------
 README                                                         | 6 +++---
 bin/config.sh                                                  | 2 +-
 docs/combiners.html                                            | 2 +-
 docs/config.html                                               | 2 +-
 pom.xml                                                        | 2 +-
 src/core/pom.xml                                               | 2 +-
 src/core/src/main/java/org/apache/accumulo/core/Constants.java | 2 +-
 src/examples/pom.xml                                           | 2 +-
 src/examples/simple/pom.xml                                    | 2 +-
 src/minicluster/pom.xml                                        | 2 +-
 src/proxy/pom.xml                                              | 2 +-
 src/server/pom.xml                                             | 2 +-
 src/server/src/main/c++/mlock/Makefile                         | 2 +-
 src/server/src/main/c++/nativeMap/Makefile                     | 2 +-
 src/server/src/main/resources/config.html                      | 2 +-
 src/start/pom.xml                                              | 2 +-
 src/trace/pom.xml                                              | 2 +-
 17 files changed, 19 insertions(+), 19 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/README
----------------------------------------------------------------------
diff --git a/README b/README
index 2552d70..33f436f 100644
--- a/README
+++ b/README
@@ -49,7 +49,7 @@ easier to install.
 
 Copy the accumulo tar file produced by "mvn package && mvn assembly:single -N" 
 from the target/ directory to the desired destination, then untar it (e.g. 
-tar xvzf accumulo-1.4.5-dist.tar.gz).
+tar xvzf accumulo-1.4.6-SNAPSHOT-dist.tar.gz).
 
 If you are using the RPM/deb, install the RPM/deb on every machine that will run
 accumulo.
@@ -178,7 +178,7 @@ scanned.
 
     Shell - Apache Accumulo Interactive Shell
     - 
-    - version: 1.4.5
+    - version: 1.4.6-SNAPSHOT
     - instance name: accumulo
     - instance id: f5947fe6-081e-41a8-9877-43730c4dfc6f
     - 
@@ -199,7 +199,7 @@ certain column.
 
     Shell - Apache Accumulo Interactive Shell
     - 
-    - version: 1.4.5
+    - version: 1.4.6-SNAPSHOT
     - instance name: accumulo
     - instance id: f5947fe6-081e-41a8-9877-43730c4dfc6f
     - 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/bin/config.sh
----------------------------------------------------------------------
diff --git a/bin/config.sh b/bin/config.sh
index 3dd7976..eba3bca 100755
--- a/bin/config.sh
+++ b/bin/config.sh
@@ -87,7 +87,7 @@ fi
 export ACCUMULO_LOG_DIR
 
 if [ -z ${ACCUMULO_VERSION} ]; then
-        ACCUMULO_VERSION=1.4.5
+        ACCUMULO_VERSION=1.4.6-SNAPSHOT
 fi
 
 if [ -z "$HADOOP_PREFIX" ]

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/docs/combiners.html
----------------------------------------------------------------------
diff --git a/docs/combiners.html b/docs/combiners.html
index 1c4293b..c4e72ec 100644
--- a/docs/combiners.html
+++ b/docs/combiners.html
@@ -30,7 +30,7 @@
 <p><pre>
 
 Shell - Apache Accumulo Interactive Shell
-- version: 1.4.5
+- version: 1.4.6-SNAPSHOT
 - instance id: 863fc0d1-3623-4b6c-8c23-7d4fdb1c8a49
 - 
 - type 'help' for a list of available commands

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/docs/config.html
----------------------------------------------------------------------
diff --git a/docs/config.html b/docs/config.html
index 515de47..ea0ade3 100644
--- a/docs/config.html
+++ b/docs/config.html
@@ -55,7 +55,7 @@
 
     Shell - Apache Accumulo Interactive Shell
     - 
-    - version: 1.4.5
+    - version: 1.4.6-SNAPSHOT
     - instance name: ac14
     - instance id: 4f48fa03-f692-43ce-ae03-94c9ea8b7181
     - 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 15c81c8..87c50b9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
   <groupId>org.apache.accumulo</groupId>
   <artifactId>accumulo</artifactId>
   <packaging>pom</packaging>
-  <version>1.4.5</version>
+  <version>1.4.6-SNAPSHOT</version>
   <name>accumulo</name>
 
   <modules>

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/src/core/pom.xml
----------------------------------------------------------------------
diff --git a/src/core/pom.xml b/src/core/pom.xml
index 9a94080..b310764 100644
--- a/src/core/pom.xml
+++ b/src/core/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.accumulo</groupId>
     <artifactId>accumulo</artifactId>
-    <version>1.4.5</version>
+    <version>1.4.6-SNAPSHOT</version>
     <relativePath>../../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/src/core/src/main/java/org/apache/accumulo/core/Constants.java
----------------------------------------------------------------------
diff --git a/src/core/src/main/java/org/apache/accumulo/core/Constants.java b/src/core/src/main/java/org/apache/accumulo/core/Constants.java
index a7a2ef1..a7fceda 100644
--- a/src/core/src/main/java/org/apache/accumulo/core/Constants.java
+++ b/src/core/src/main/java/org/apache/accumulo/core/Constants.java
@@ -31,7 +31,7 @@ import org.apache.hadoop.io.Text;
 
 public class Constants {
   public static final Charset UTF8 = Charset.forName("UTF-8");
-  public static final String VERSION = "1.4.5";
+  public static final String VERSION = "1.4.6-SNAPSHOT";
   public static final int DATA_VERSION = 4;
   public static final int PREV_DATA_VERSION = 3;
   

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/src/examples/pom.xml
----------------------------------------------------------------------
diff --git a/src/examples/pom.xml b/src/examples/pom.xml
index 7a8de8b..3a74784 100644
--- a/src/examples/pom.xml
+++ b/src/examples/pom.xml
@@ -20,7 +20,7 @@
   <parent>
         <artifactId>accumulo</artifactId>
         <groupId>org.apache.accumulo</groupId>
-        <version>1.4.5</version>
+        <version>1.4.6-SNAPSHOT</version>
         <relativePath>../../</relativePath>
   </parent>
   <artifactId>accumulo-examples</artifactId>

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/src/examples/simple/pom.xml
----------------------------------------------------------------------
diff --git a/src/examples/simple/pom.xml b/src/examples/simple/pom.xml
index 3b1b22a..4c4ce0b 100644
--- a/src/examples/simple/pom.xml
+++ b/src/examples/simple/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.accumulo</groupId>
     <artifactId>accumulo-examples</artifactId>
-    <version>1.4.5</version>
+    <version>1.4.6-SNAPSHOT</version>
     <relativePath>../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/src/minicluster/pom.xml
----------------------------------------------------------------------
diff --git a/src/minicluster/pom.xml b/src/minicluster/pom.xml
index 3cb5e24..cc8a4be 100644
--- a/src/minicluster/pom.xml
+++ b/src/minicluster/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.accumulo</groupId>
     <artifactId>accumulo</artifactId>
-    <version>1.4.5</version>
+    <version>1.4.6-SNAPSHOT</version>
     <relativePath>../../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/src/proxy/pom.xml
----------------------------------------------------------------------
diff --git a/src/proxy/pom.xml b/src/proxy/pom.xml
index 68b9d73..90f74f0 100644
--- a/src/proxy/pom.xml
+++ b/src/proxy/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <artifactId>accumulo</artifactId>
     <groupId>org.apache.accumulo</groupId>
-    <version>1.4.5</version>
+    <version>1.4.6-SNAPSHOT</version>
     <relativePath>../../</relativePath>
   </parent>
   <artifactId>accumulo-proxy</artifactId>

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/src/server/pom.xml
----------------------------------------------------------------------
diff --git a/src/server/pom.xml b/src/server/pom.xml
index 18010f2..dbe4fb4 100644
--- a/src/server/pom.xml
+++ b/src/server/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.accumulo</groupId>
     <artifactId>accumulo</artifactId>
-    <version>1.4.5</version>
+    <version>1.4.6-SNAPSHOT</version>
     <relativePath>../../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/src/server/src/main/c++/mlock/Makefile
----------------------------------------------------------------------
diff --git a/src/server/src/main/c++/mlock/Makefile b/src/server/src/main/c++/mlock/Makefile
index 8520673..cb0609b 100644
--- a/src/server/src/main/c++/mlock/Makefile
+++ b/src/server/src/main/c++/mlock/Makefile
@@ -37,7 +37,7 @@ clean:
 	rm -f $(INSTALLED_LIBS) $(LIBS)
 
 org_apache_accumulo_server_tabletserver_$(LIB).h : ../../java/org/apache/accumulo/server/tabletserver/$(LIB).java
-	javah -classpath ../../../../../../lib/accumulo-server-1.4.5.jar org.apache.accumulo.server.tabletserver.$(LIB)
+	javah -classpath ../../../../../../lib/accumulo-server-1.4.6-SNAPSHOT.jar org.apache.accumulo.server.tabletserver.$(LIB)
 
 $(INSTALLED_LIBS) : $(INSTALL_DIR) $(LIBS)
 	cp $(LIBS) $(INSTALL_DIR)

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/src/server/src/main/c++/nativeMap/Makefile
----------------------------------------------------------------------
diff --git a/src/server/src/main/c++/nativeMap/Makefile b/src/server/src/main/c++/nativeMap/Makefile
index ee6eeaf..537c53b 100644
--- a/src/server/src/main/c++/nativeMap/Makefile
+++ b/src/server/src/main/c++/nativeMap/Makefile
@@ -40,7 +40,7 @@ clean:
 	rm -f $(INSTALLED_LIBS) $(LIBS)
 
 org_apache_accumulo_server_tabletserver_NativeMap.h : ../../java/org/apache/accumulo/server/tabletserver/NativeMap.java
-	javah -classpath ../../../../../../lib/accumulo-server-1.4.5.jar org.apache.accumulo.server.tabletserver.NativeMap
+	javah -classpath ../../../../../../lib/accumulo-server-1.4.6-SNAPSHOT.jar org.apache.accumulo.server.tabletserver.NativeMap
 
 $(INSTALLED_LIBS) : $(INSTALL_DIR) $(LIBS)
 	cp $(LIBS) $(INSTALL_DIR)

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/src/server/src/main/resources/config.html
----------------------------------------------------------------------
diff --git a/src/server/src/main/resources/config.html b/src/server/src/main/resources/config.html
index a06988d..0387103 100644
--- a/src/server/src/main/resources/config.html
+++ b/src/server/src/main/resources/config.html
@@ -55,7 +55,7 @@
 
     Shell - Apache Accumulo Interactive Shell
     - 
-    - version: 1.4.5
+    - version: 1.4.6-SNAPSHOT
     - instance name: ac14
     - instance id: 4f48fa03-f692-43ce-ae03-94c9ea8b7181
     - 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/src/start/pom.xml
----------------------------------------------------------------------
diff --git a/src/start/pom.xml b/src/start/pom.xml
index 995241e..bcd5feb 100644
--- a/src/start/pom.xml
+++ b/src/start/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.accumulo</groupId>
     <artifactId>accumulo</artifactId>
-    <version>1.4.5</version>
+    <version>1.4.6-SNAPSHOT</version>
     <relativePath>../../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/e022d761/src/trace/pom.xml
----------------------------------------------------------------------
diff --git a/src/trace/pom.xml b/src/trace/pom.xml
index ff3f1fd..cd66f55 100644
--- a/src/trace/pom.xml
+++ b/src/trace/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.accumulo</groupId>
     <artifactId>accumulo</artifactId>
-    <version>1.4.5</version>
+    <version>1.4.6-SNAPSHOT</version>
     <relativePath>../../</relativePath>
   </parent>
 


[3/3] git commit: ACCUMULO-2169 Update CHANGES.

Posted by md...@apache.org.
ACCUMULO-2169 Update CHANGES.


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

Branch: refs/heads/1.4.5-RC1
Commit: 578fe0b59232a61f7a0a9bc0d90e1a95d5f03c21
Parents: ca3f778
Author: Mike Drob <md...@cloudera.com>
Authored: Tue Mar 4 16:17:10 2014 -0500
Committer: Mike Drob <md...@cloudera.com>
Committed: Mon Mar 24 13:34:57 2014 -0400

----------------------------------------------------------------------
 CHANGES | 160 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 160 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/578fe0b5/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 9be33d2..d8ca00a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,163 @@
+Release Notes - Accumulo - Version 1.4.5
+
+** Sub-task
+    * [ACCUMULO-1686] - loggers die when the zookeeper they are using disconnects
+    * [ACCUMULO-1688] - Ensure ZooLock.watchParent is properly set in case of Connection loss
+    * [ACCUMULO-1792] - Backport changes for Hadoop 2.0 from 1.5 to 1.4
+    * [ACCUMULO-1793] - Update Hadoop 2.0 profile to Hadoop 2.2.0
+    * [ACCUMULO-1794] - Add tests that flex Hadoop 2 features
+    * [ACCUMULO-1795] - ensure 1.4 remains compatible with Hadoop 0.20.203
+    * [ACCUMULO-1796] - packaging for multiple supported Hadoops
+    * [ACCUMULO-2011] - LaTeX broken by ACCUMULO-1956
+    * [ACCUMULO-2015] - GC does not start when running in standalone mode
+    * [ACCUMULO-2017] - Wikisearch should use Guava instead of Google Collections
+    * [ACCUMULO-2018] - Wikisearch Parallel Ingest script should use parallel configuration file.
+    * [ACCUMULO-2019] - Fix packaging and deployment instructions for wikisearch query interface
+    * [ACCUMULO-2378] - Fix use of LOGNAME in functional tests under MR
+    * [ACCUMULO-2380] - Update functional test MR job to indicate failed tests
+    * [ACCUMULO-2450] - Backport ACCUMULO-2438 to 1.4
+
+** Bug
+    * [ACCUMULO-1434] - NullPointerException thrown by ColumnVisibility#flatten() with empty visibility
+    * [ACCUMULO-1472] - MiniAccumulo cluster improperly configures classpaths
+    * [ACCUMULO-1556] - Initialize could use a better warning when HDFS dir is already populated
+    * [ACCUMULO-1563] - Have BulkSplitOptimization and Compaction functional tests not write to hdfs root dir.
+    * [ACCUMULO-1572] - single node zookeeper failure kills connected accumulo servers
+    * [ACCUMULO-1584] - ACCUMULO_CONF_DIR not respected for accumulo-metrics.xml
+    * [ACCUMULO-1591] - Upgrading Accumulo with different zookeeper secret causes issues
+    * [ACCUMULO-1593] - Looking up instanceName in ZK doesn't use consistent encoding
+    * [ACCUMULO-1698] - stop-here doesn't consider system hostname
+    * [ACCUMULO-1775] - zooCacheTest fails due to missing /tmp/zcTest-42
+    * [ACCUMULO-1786] - MiniAccumuloClusterGCTest fails if GC is already running
+    * [ACCUMULO-1791] - status command for init.d script doesn't work with service command
+    * [ACCUMULO-1800] - delete mutations not working through the Proxy
+    * [ACCUMULO-1819] - NativeMap Makefile doesn't work with newest OSX/Xcode
+    * [ACCUMULO-1821] - master recovers new WAL on recovering tablets
+    * [ACCUMULO-1854] - AccumuloInputFormat can be less strict about contents of Configuration
+    * [ACCUMULO-1858] - Backport fix for Accumulo-1379 PermGen Leak to 1.4 and 1.5
+    * [ACCUMULO-1868] - Distro built from clean checkout misses several directories
+    * [ACCUMULO-1870] - Functional tests don't configure Monitor log 
+    * [ACCUMULO-1873] - start-all.sh's zookeeper version check is lacking
+    * [ACCUMULO-1876] - Problem using accumulo artifacts from ivy
+    * [ACCUMULO-1878] - Functional test for Examples doesn't check return codes; many examples don't run
+    * [ACCUMULO-1889] - ZooKeeperInstance close method should mark instance closed.
+    * [ACCUMULO-1891] - AccumuloSecurityException doesn't properly handle null error codes.
+    * [ACCUMULO-1892] - examples.simple.RandomBatchWriter might not write the specified number of rowids
+    * [ACCUMULO-1893] - BulkSplitOptimization and Compaction functional tests still writing to root of HDFS in 1.4.x
+    * [ACCUMULO-1896] - Build on clean checkout fails
+    * [ACCUMULO-1901] - start-here.sh starts only one GC process even if more are defined
+    * [ACCUMULO-1903] - Monitor creates a new ZK object to fetch gc status and doesn't wait for it to connect.
+    * [ACCUMULO-1914] - MetadataTableUtil.removeUnusedEntries() should use one mutation
+    * [ACCUMULO-1920] - monitor not seeing zookeeper updates
+    * [ACCUMULO-1934] - lots of simple warnings in 1.4 branch
+    * [ACCUMULO-1940] - Data file in !METADATA differs from in memory data
+    * [ACCUMULO-1944] - Cobertura not working for functional tests in 1.5.x and earlier
+    * [ACCUMULO-1958] - Range constructor lacks key checks, should be non-public
+    * [ACCUMULO-1967] - magitator should respect presence or lack of gc file
+    * [ACCUMULO-1968] - The FileDataIngest example creates MD5 hash keys, but the javadoc says it creates SHA1 hash keys.
+    * [ACCUMULO-1986] - Validity checks missing for readFields and Thrift deserialization
+    * [ACCUMULO-1993] - proxy classes conflict with Ruby system classes
+    * [ACCUMULO-1994] - proxy does not handle Key timestamps correctly
+    * [ACCUMULO-1997] - Perform validation on ACCUMULO_HOME
+    * [ACCUMULO-2027] - ZooKeeperInstance.close() not freeing resources in multithreaded env
+    * [ACCUMULO-2037] - Tablets not assigned to last location
+    * [ACCUMULO-2042] - Scalability test does not run
+    * [ACCUMULO-2057] - found two last locations for the same extent
+    * [ACCUMULO-2058] - Shell Env interpolation lacking for kerberos configuration
+    * [ACCUMULO-2078] - ACCUMULO_LOG_HOST is incorrectly computed
+    * [ACCUMULO-2109] - functional tests do not clean up generated test site.xml files
+    * [ACCUMULO-2112] - master does not balance after intermittent communication failure
+    * [ACCUMULO-2116] - Examples functional test only works when run from ACCUMULO_HOME
+    * [ACCUMULO-2117] - ClassLoaderIT fails
+    * [ACCUMULO-2127] - example accumulo-site.xmls put Hadoop 2 jars ahead of Accumulo jars on classpath
+    * [ACCUMULO-2128] - Provide resource cleanup via static utility rather than Instance.close
+    * [ACCUMULO-2146] - typo in continuous-env.sh.example
+    * [ACCUMULO-2152] - start-all.sh does not work for gc and tracer roles when there are multiples given in conf files
+    * [ACCUMULO-2176] - ExecfileCommand#execute() should close scanner
+    * [ACCUMULO-2179] - CreateTableCommand#execute() should close Scanner
+    * [ACCUMULO-2182] - Backport randomwalk changes
+    * [ACCUMULO-2184] - "Unknown" HDFS usage on monitor
+    * [ACCUMULO-2194] - Back-to-back Security randomwalk tests fail
+    * [ACCUMULO-2198] - Concurrent randomwalk fails with unbalanced servers
+    * [ACCUMULO-2201] - Compilation error in 1.4.5-SNAPSHOT from ACCUMULO-2184
+    * [ACCUMULO-2202] - Bloom loader missleading ERROR
+    * [ACCUMULO-2211] - Security randomwalk fails "User doesn't exist and they SHOULD"
+    * [ACCUMULO-2213] - tracer reports: IllegalStateException: Closed
+    * [ACCUMULO-2220] - CloudStone Benchmarks do not respect ACCUMULO_CONF_DIR
+    * [ACCUMULO-2221] - CloudStone Benchmarks should accept ZKs as parameter
+    * [ACCUMULO-2224] - ZooSession should be more robust to transient DNS issues
+    * [ACCUMULO-2225] - Need to better handle DNS failure propagation from Hadoop
+    * [ACCUMULO-2227] - Concurrent randomwalk fails when namenode dies after bulk import step
+    * [ACCUMULO-2228] - Security randomwalk fails when namenode dies before bulk import
+    * [ACCUMULO-2233] - Continuous Verify job should find ranges on cloned table
+    * [ACCUMULO-2234] - Cannot run offline mapreduce over non-default instance.dfs.dir value
+    * [ACCUMULO-2252] - Backport ACCUMULO-684 to 1.4.x
+    * [ACCUMULO-2281] - Building creates a src/lib directory with a log4j jar
+    * [ACCUMULO-2285] - stop-all.sh in 1.4.x requires tracers and gc files
+    * [ACCUMULO-2301] - Monitor should not list jetty as provided
+    * [ACCUMULO-2319] - TabletServerResourceManager MemoryManagementFramework constructor starts threads
+    * [ACCUMULO-2390] - TraceProxy.trace should not throw InvocationTargetException
+    * [ACCUMULO-2399] - BatchWalkers die when started before Ingesters
+    * [ACCUMULO-2404] - Main.main can log cleaner messages when underlying process has errors
+    * [ACCUMULO-2408] - metadata table not assigned after root table is loaded
+    * [ACCUMULO-2512] - MAC stop should waitFor processes
+    * [ACCUMULO-2520] - Garbage collector deleted everything when given bad input
+    * [ACCUMULO-2523] - TabletTime.maxMetadataTime NPE if both arguments are null
+    * [ACCUMULO-2539] - SummingCombiner does not adhere to Combiner#COLUMNS_OPTION
+
+** Improvement
+    * [ACCUMULO-1069] - InstanceOperations get/set/remove Property methods are ambiguous
+    * [ACCUMULO-1452] - Automate cleanup of old rf_tmp files
+    * [ACCUMULO-1576] - add CONTINUOUS_CONF_DIR environment variable for continuous ingest test
+    * [ACCUMULO-1633] - BatchWriter and variants don't assert maxMemory as a positive, non-zero value
+    * [ACCUMULO-1658] - System integration tests should default ACCUMULO_CONF_DIR to ACCUMULO_HOME/conf
+    * [ACCUMULO-1689] - Add option to run GC in MiniAccumuloCluster
+    * [ACCUMULO-1733] - Better error message on minicluster failure to initialize
+    * [ACCUMULO-1785] - Alter config.sh to optionally just verify environment instead of making changes
+    * [ACCUMULO-1790] - Hadoop 2 support for 1.4.x
+    * [ACCUMULO-1835] - Update test/system/auto/README for -f, -x, etc.
+    * [ACCUMULO-1882] - wikisearch-ingest module fails to build
+    * [ACCUMULO-1890] - MiniAccumloClusterGCTest failing on limited resource machine.
+    * [ACCUMULO-1933] - Make unit on memory parameters case-insensitive
+    * [ACCUMULO-1946] - Include dfs.datanode.synconclose in hdfs configuration documentation
+    * [ACCUMULO-1973] - Log better message when Hadoop configuration files are not found
+    * [ACCUMULO-1984] - Clean up Instance closing
+    * [ACCUMULO-2004] - LIB_PATH for Hadoop native libs is lacking
+    * [ACCUMULO-2020] - Wikisearch should manage dependency conflicts
+    * [ACCUMULO-2060] - Improve example general.classpath
+    * [ACCUMULO-2064] - Include Git SHA1 in artifacts
+    * [ACCUMULO-2108] - Reduce number of repeated project versions
+    * [ACCUMULO-2120] - Fix maven warnings introduced declaration of mavanagaiata
+    * [ACCUMULO-2126] - Hadoop profile names should be consistent across branches
+    * [ACCUMULO-2132] - Prevent dock element in OSX from launching with MAC
+    * [ACCUMULO-2163] - Always run GC in mini accumulo
+    * [ACCUMULO-2239] - Reformat test README files to Markdown
+    * [ACCUMULO-2262] - Include java.net.preferIPv4Stack=true in process startup
+    * [ACCUMULO-2314] - Minor typo/grammatical nits.
+    * [ACCUMULO-2500] - Increase tickTime for MAC
+
+** New Feature
+    * [ACCUMULO-1639] - Server-side iterator/filter that allows you to specify a lexicographical range of column qualifier values you want to retrieve from a Scanner (ColumnSliceFilter)
+
+** Task
+    * [ACCUMULO-1690] - Update Apache RAT plugin to 0.10
+    * [ACCUMULO-1910] - Add source to jar files used for testing
+    * [ACCUMULO-1956] - Add section on decomissioning or adding nodes to an Accumulo cluster
+    * [ACCUMULO-1961] - Fix trivial compiler/javadoc warnings
+    * [ACCUMULO-1977] - Add branch to wikisearch repo that works with Accumulo 1.4.5
+    * [ACCUMULO-2010] - Remove resource leak warnings
+    * [ACCUMULO-2113] - Verify that The Hammer approach to resource leak is a viable short term fix
+
+** Test
+    * [ACCUMULO-1829] - Increase test timeouts for Accumulo 1.4.x
+    * [ACCUMULO-2005] - Provide a scaling factor for mapred.task.timeout inside functional test's RunTests.java
+    * [ACCUMULO-2138] - Backport ACCUMULO-679 to 1.4.x
+    * [ACCUMULO-2216] - Randomwalk module to run each test once
+    * [ACCUMULO-2488] - Concurrent randomwalk balance check needs refinement
+    * [ACCUMULO-2491] - Backport ACCUMULO-1162 to 1.4
+    * [ACCUMULO-2508] - Security randomwalk fails "BAD_CREDENTIALS - Username or Password is Invalid"
+
+
 Release Notes - Accumulo - Version 1.4.4
 
 ** Sub-task


[2/3] git commit: ACCUMULO-2169 Replace 1.4.5-SNAPSHOT with 1.4.5

Posted by md...@apache.org.
ACCUMULO-2169 Replace 1.4.5-SNAPSHOT with 1.4.5

find . -type f -not -path './.git/*' -exec sed -i 's/1.4.5-SNAPSHOT/1.4.5/' {} \;


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

Branch: refs/heads/1.4.5-RC1
Commit: 81babc0d8390f63a18b383a07d63b379b9403183
Parents: 578fe0b
Author: Mike Drob <md...@cloudera.com>
Authored: Thu Jan 9 18:31:10 2014 -0800
Committer: Mike Drob <md...@cloudera.com>
Committed: Mon Mar 24 13:34:57 2014 -0400

----------------------------------------------------------------------
 README                                                         | 6 +++---
 bin/config.sh                                                  | 2 +-
 docs/combiners.html                                            | 2 +-
 docs/config.html                                               | 2 +-
 pom.xml                                                        | 2 +-
 src/core/pom.xml                                               | 2 +-
 src/core/src/main/java/org/apache/accumulo/core/Constants.java | 2 +-
 src/examples/pom.xml                                           | 2 +-
 src/examples/simple/pom.xml                                    | 2 +-
 src/minicluster/pom.xml                                        | 2 +-
 src/proxy/pom.xml                                              | 2 +-
 src/server/pom.xml                                             | 2 +-
 src/server/src/main/c++/mlock/Makefile                         | 2 +-
 src/server/src/main/c++/nativeMap/Makefile                     | 2 +-
 src/server/src/main/resources/config.html                      | 2 +-
 src/start/pom.xml                                              | 2 +-
 src/trace/pom.xml                                              | 2 +-
 17 files changed, 19 insertions(+), 19 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/README
----------------------------------------------------------------------
diff --git a/README b/README
index f32d606..2552d70 100644
--- a/README
+++ b/README
@@ -49,7 +49,7 @@ easier to install.
 
 Copy the accumulo tar file produced by "mvn package && mvn assembly:single -N" 
 from the target/ directory to the desired destination, then untar it (e.g. 
-tar xvzf accumulo-1.4.5-SNAPSHOT-dist.tar.gz).
+tar xvzf accumulo-1.4.5-dist.tar.gz).
 
 If you are using the RPM/deb, install the RPM/deb on every machine that will run
 accumulo.
@@ -178,7 +178,7 @@ scanned.
 
     Shell - Apache Accumulo Interactive Shell
     - 
-    - version: 1.4.5-SNAPSHOT
+    - version: 1.4.5
     - instance name: accumulo
     - instance id: f5947fe6-081e-41a8-9877-43730c4dfc6f
     - 
@@ -199,7 +199,7 @@ certain column.
 
     Shell - Apache Accumulo Interactive Shell
     - 
-    - version: 1.4.5-SNAPSHOT
+    - version: 1.4.5
     - instance name: accumulo
     - instance id: f5947fe6-081e-41a8-9877-43730c4dfc6f
     - 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/bin/config.sh
----------------------------------------------------------------------
diff --git a/bin/config.sh b/bin/config.sh
index 12f2096..3dd7976 100755
--- a/bin/config.sh
+++ b/bin/config.sh
@@ -87,7 +87,7 @@ fi
 export ACCUMULO_LOG_DIR
 
 if [ -z ${ACCUMULO_VERSION} ]; then
-        ACCUMULO_VERSION=1.4.5-SNAPSHOT
+        ACCUMULO_VERSION=1.4.5
 fi
 
 if [ -z "$HADOOP_PREFIX" ]

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/docs/combiners.html
----------------------------------------------------------------------
diff --git a/docs/combiners.html b/docs/combiners.html
index 8524b52..1c4293b 100644
--- a/docs/combiners.html
+++ b/docs/combiners.html
@@ -30,7 +30,7 @@
 <p><pre>
 
 Shell - Apache Accumulo Interactive Shell
-- version: 1.4.5-SNAPSHOT
+- version: 1.4.5
 - instance id: 863fc0d1-3623-4b6c-8c23-7d4fdb1c8a49
 - 
 - type 'help' for a list of available commands

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/docs/config.html
----------------------------------------------------------------------
diff --git a/docs/config.html b/docs/config.html
index 01d2e14..515de47 100644
--- a/docs/config.html
+++ b/docs/config.html
@@ -55,7 +55,7 @@
 
     Shell - Apache Accumulo Interactive Shell
     - 
-    - version: 1.4.5-SNAPSHOT
+    - version: 1.4.5
     - instance name: ac14
     - instance id: 4f48fa03-f692-43ce-ae03-94c9ea8b7181
     - 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f97d7ca..15c81c8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
   <groupId>org.apache.accumulo</groupId>
   <artifactId>accumulo</artifactId>
   <packaging>pom</packaging>
-  <version>1.4.5-SNAPSHOT</version>
+  <version>1.4.5</version>
   <name>accumulo</name>
 
   <modules>

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/src/core/pom.xml
----------------------------------------------------------------------
diff --git a/src/core/pom.xml b/src/core/pom.xml
index 11ce09b..9a94080 100644
--- a/src/core/pom.xml
+++ b/src/core/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.accumulo</groupId>
     <artifactId>accumulo</artifactId>
-    <version>1.4.5-SNAPSHOT</version>
+    <version>1.4.5</version>
     <relativePath>../../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/src/core/src/main/java/org/apache/accumulo/core/Constants.java
----------------------------------------------------------------------
diff --git a/src/core/src/main/java/org/apache/accumulo/core/Constants.java b/src/core/src/main/java/org/apache/accumulo/core/Constants.java
index 6578101..a7a2ef1 100644
--- a/src/core/src/main/java/org/apache/accumulo/core/Constants.java
+++ b/src/core/src/main/java/org/apache/accumulo/core/Constants.java
@@ -31,7 +31,7 @@ import org.apache.hadoop.io.Text;
 
 public class Constants {
   public static final Charset UTF8 = Charset.forName("UTF-8");
-  public static final String VERSION = "1.4.5-SNAPSHOT";
+  public static final String VERSION = "1.4.5";
   public static final int DATA_VERSION = 4;
   public static final int PREV_DATA_VERSION = 3;
   

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/src/examples/pom.xml
----------------------------------------------------------------------
diff --git a/src/examples/pom.xml b/src/examples/pom.xml
index 0ec2184..7a8de8b 100644
--- a/src/examples/pom.xml
+++ b/src/examples/pom.xml
@@ -20,7 +20,7 @@
   <parent>
         <artifactId>accumulo</artifactId>
         <groupId>org.apache.accumulo</groupId>
-        <version>1.4.5-SNAPSHOT</version>
+        <version>1.4.5</version>
         <relativePath>../../</relativePath>
   </parent>
   <artifactId>accumulo-examples</artifactId>

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/src/examples/simple/pom.xml
----------------------------------------------------------------------
diff --git a/src/examples/simple/pom.xml b/src/examples/simple/pom.xml
index 44f6b88..3b1b22a 100644
--- a/src/examples/simple/pom.xml
+++ b/src/examples/simple/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.accumulo</groupId>
     <artifactId>accumulo-examples</artifactId>
-    <version>1.4.5-SNAPSHOT</version>
+    <version>1.4.5</version>
     <relativePath>../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/src/minicluster/pom.xml
----------------------------------------------------------------------
diff --git a/src/minicluster/pom.xml b/src/minicluster/pom.xml
index a956fdd..3cb5e24 100644
--- a/src/minicluster/pom.xml
+++ b/src/minicluster/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.accumulo</groupId>
     <artifactId>accumulo</artifactId>
-    <version>1.4.5-SNAPSHOT</version>
+    <version>1.4.5</version>
     <relativePath>../../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/src/proxy/pom.xml
----------------------------------------------------------------------
diff --git a/src/proxy/pom.xml b/src/proxy/pom.xml
index 466d88a..68b9d73 100644
--- a/src/proxy/pom.xml
+++ b/src/proxy/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <artifactId>accumulo</artifactId>
     <groupId>org.apache.accumulo</groupId>
-    <version>1.4.5-SNAPSHOT</version>
+    <version>1.4.5</version>
     <relativePath>../../</relativePath>
   </parent>
   <artifactId>accumulo-proxy</artifactId>

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/src/server/pom.xml
----------------------------------------------------------------------
diff --git a/src/server/pom.xml b/src/server/pom.xml
index d748b56..18010f2 100644
--- a/src/server/pom.xml
+++ b/src/server/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.accumulo</groupId>
     <artifactId>accumulo</artifactId>
-    <version>1.4.5-SNAPSHOT</version>
+    <version>1.4.5</version>
     <relativePath>../../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/src/server/src/main/c++/mlock/Makefile
----------------------------------------------------------------------
diff --git a/src/server/src/main/c++/mlock/Makefile b/src/server/src/main/c++/mlock/Makefile
index 932ac86..8520673 100644
--- a/src/server/src/main/c++/mlock/Makefile
+++ b/src/server/src/main/c++/mlock/Makefile
@@ -37,7 +37,7 @@ clean:
 	rm -f $(INSTALLED_LIBS) $(LIBS)
 
 org_apache_accumulo_server_tabletserver_$(LIB).h : ../../java/org/apache/accumulo/server/tabletserver/$(LIB).java
-	javah -classpath ../../../../../../lib/accumulo-server-1.4.5-SNAPSHOT.jar org.apache.accumulo.server.tabletserver.$(LIB)
+	javah -classpath ../../../../../../lib/accumulo-server-1.4.5.jar org.apache.accumulo.server.tabletserver.$(LIB)
 
 $(INSTALLED_LIBS) : $(INSTALL_DIR) $(LIBS)
 	cp $(LIBS) $(INSTALL_DIR)

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/src/server/src/main/c++/nativeMap/Makefile
----------------------------------------------------------------------
diff --git a/src/server/src/main/c++/nativeMap/Makefile b/src/server/src/main/c++/nativeMap/Makefile
index e3c67db..ee6eeaf 100644
--- a/src/server/src/main/c++/nativeMap/Makefile
+++ b/src/server/src/main/c++/nativeMap/Makefile
@@ -40,7 +40,7 @@ clean:
 	rm -f $(INSTALLED_LIBS) $(LIBS)
 
 org_apache_accumulo_server_tabletserver_NativeMap.h : ../../java/org/apache/accumulo/server/tabletserver/NativeMap.java
-	javah -classpath ../../../../../../lib/accumulo-server-1.4.5-SNAPSHOT.jar org.apache.accumulo.server.tabletserver.NativeMap
+	javah -classpath ../../../../../../lib/accumulo-server-1.4.5.jar org.apache.accumulo.server.tabletserver.NativeMap
 
 $(INSTALLED_LIBS) : $(INSTALL_DIR) $(LIBS)
 	cp $(LIBS) $(INSTALL_DIR)

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/src/server/src/main/resources/config.html
----------------------------------------------------------------------
diff --git a/src/server/src/main/resources/config.html b/src/server/src/main/resources/config.html
index f63c5c0..a06988d 100644
--- a/src/server/src/main/resources/config.html
+++ b/src/server/src/main/resources/config.html
@@ -55,7 +55,7 @@
 
     Shell - Apache Accumulo Interactive Shell
     - 
-    - version: 1.4.5-SNAPSHOT
+    - version: 1.4.5
     - instance name: ac14
     - instance id: 4f48fa03-f692-43ce-ae03-94c9ea8b7181
     - 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/src/start/pom.xml
----------------------------------------------------------------------
diff --git a/src/start/pom.xml b/src/start/pom.xml
index 69a9ca7..995241e 100644
--- a/src/start/pom.xml
+++ b/src/start/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.accumulo</groupId>
     <artifactId>accumulo</artifactId>
-    <version>1.4.5-SNAPSHOT</version>
+    <version>1.4.5</version>
     <relativePath>../../</relativePath>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/81babc0d/src/trace/pom.xml
----------------------------------------------------------------------
diff --git a/src/trace/pom.xml b/src/trace/pom.xml
index 941742c..ff3f1fd 100644
--- a/src/trace/pom.xml
+++ b/src/trace/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.accumulo</groupId>
     <artifactId>accumulo</artifactId>
-    <version>1.4.5-SNAPSHOT</version>
+    <version>1.4.5</version>
     <relativePath>../../</relativePath>
   </parent>