You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by dl...@apache.org on 2016/08/16 17:04:57 UTC

[1/3] accumulo git commit: ACCUMULO-4379: Make it clear as to which native library is missing

Repository: accumulo
Updated Branches:
  refs/heads/1.8 30d065dee -> 711b4211d


ACCUMULO-4379: Make it clear as to which native library is missing


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

Branch: refs/heads/1.8
Commit: 02ac592cbd1b838da4f472a86f35ea62c3bf0a3e
Parents: e1cd01f
Author: Dave Marion <dl...@apache.org>
Authored: Tue Aug 16 13:00:52 2016 -0400
Committer: Dave Marion <dl...@apache.org>
Committed: Tue Aug 16 13:00:52 2016 -0400

----------------------------------------------------------------------
 assemble/bin/bootstrap_config.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/02ac592c/assemble/bin/bootstrap_config.sh
----------------------------------------------------------------------
diff --git a/assemble/bin/bootstrap_config.sh b/assemble/bin/bootstrap_config.sh
index 42b83ad..ba695d5 100755
--- a/assemble/bin/bootstrap_config.sh
+++ b/assemble/bin/bootstrap_config.sh
@@ -357,11 +357,11 @@ fi
 if [[ "${TYPE}" = "native" ]]; then
   if [[ "$(uname)" = 'Linux' ]]; then
     if [[ -z $HADOOP_PREFIX ]]; then
-      echo "HADOOP_PREFIX not set cannot automatically configure LD_LIBRARY_PATH"
+      echo "WARNING: HADOOP_PREFIX not set, cannot automatically configure LD_LIBRARY_PATH to include Hadoop native libraries"
     else
       NATIVE_LIB=$(readlink -ef $(dirname $(for x in $(find $HADOOP_PREFIX -name libhadoop.so); do ld $x 2>/dev/null && echo $x && break; done) 2>>/dev/null) 2>>/dev/null)
       if [[ -z $NATIVE_LIB ]]; then
-        echo -e "Native libraries could not be found for your sytem in: $HADOOP_PREFIX"
+        echo -e "WARNING: The Hadoop native libraries could not be found for your sytem in: $HADOOP_PREFIX"
       else
         sed "/# Should the monitor/ i export LD_LIBRARY_PATH=${NATIVE_LIB}:\${LD_LIBRARY_PATH}" ${CONF_DIR}/$ACCUMULO_ENV > temp
         mv temp ${CONF_DIR}/$ACCUMULO_ENV
@@ -369,6 +369,6 @@ if [[ "${TYPE}" = "native" ]]; then
       fi
     fi
   fi
-  echo -e "Please remember to compile the native libraries using the bin/build_native_library.sh script and to set the LD_LIBRARY_PATH variable in the ${CONF_DIR}/accumulo-env.sh script if needed."
+  echo -e "Please remember to compile the Accumulo native libraries using the bin/build_native_library.sh script and to set the LD_LIBRARY_PATH variable in the ${CONF_DIR}/accumulo-env.sh script if needed."
 fi
 echo "Setup complete"


[3/3] accumulo git commit: Merge branch '1.7' into 1.8

Posted by dl...@apache.org.
Merge branch '1.7' into 1.8


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

Branch: refs/heads/1.8
Commit: 711b4211d3ff9deca792e90d83f4afcae1e28db1
Parents: 30d065d 8aaef9e
Author: Dave Marion <dl...@apache.org>
Authored: Tue Aug 16 13:03:05 2016 -0400
Committer: Dave Marion <dl...@apache.org>
Committed: Tue Aug 16 13:03:05 2016 -0400

----------------------------------------------------------------------
 assemble/bin/bootstrap_config.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/711b4211/assemble/bin/bootstrap_config.sh
----------------------------------------------------------------------


[2/3] accumulo git commit: Merge branch '1.6' into 1.7

Posted by dl...@apache.org.
Merge branch '1.6' into 1.7


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

Branch: refs/heads/1.8
Commit: 8aaef9e7a863f0348b922d31826f27bdbcfe9551
Parents: 1e087ba 02ac592
Author: Dave Marion <dl...@apache.org>
Authored: Tue Aug 16 13:02:20 2016 -0400
Committer: Dave Marion <dl...@apache.org>
Committed: Tue Aug 16 13:02:20 2016 -0400

----------------------------------------------------------------------
 assemble/bin/bootstrap_config.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/8aaef9e7/assemble/bin/bootstrap_config.sh
----------------------------------------------------------------------
diff --cc assemble/bin/bootstrap_config.sh
index 719aff9,ba695d5..9dfa6b8
--- a/assemble/bin/bootstrap_config.sh
+++ b/assemble/bin/bootstrap_config.sh
@@@ -381,17 -354,17 +381,17 @@@ elif [[ "${HADOOP_VERSION}" == "IOP4.1
  fi
  
  #Additional setup steps for native configuration.
 -if [[ "${TYPE}" = "native" ]]; then
 -  if [[ "$(uname)" = 'Linux' ]]; then
 +if [[ ${TYPE} == native ]]; then
 +  if [[ $(uname) == Linux ]]; then
      if [[ -z $HADOOP_PREFIX ]]; then
-       echo "HADOOP_PREFIX not set cannot automatically configure LD_LIBRARY_PATH"
+       echo "WARNING: HADOOP_PREFIX not set, cannot automatically configure LD_LIBRARY_PATH to include Hadoop native libraries"
      else
        NATIVE_LIB=$(readlink -ef $(dirname $(for x in $(find $HADOOP_PREFIX -name libhadoop.so); do ld $x 2>/dev/null && echo $x && break; done) 2>>/dev/null) 2>>/dev/null)
        if [[ -z $NATIVE_LIB ]]; then
-         echo -e "Native libraries could not be found for your sytem in: $HADOOP_PREFIX"
+         echo -e "WARNING: The Hadoop native libraries could not be found for your sytem in: $HADOOP_PREFIX"
        else
          sed "/# Should the monitor/ i export LD_LIBRARY_PATH=${NATIVE_LIB}:\${LD_LIBRARY_PATH}" ${CONF_DIR}/$ACCUMULO_ENV > temp
 -        mv temp ${CONF_DIR}/$ACCUMULO_ENV
 +        mv temp "${CONF_DIR}/$ACCUMULO_ENV"
          echo -e "Added ${NATIVE_LIB} to the LD_LIBRARY_PATH"
        fi
      fi