Member since
06-14-2014
3
Posts
0
Kudos Received
0
Solutions
06-16-2014
07:40 PM
Thanks, that works - and make sense. In retrospect should have thought about looking at what you all shipped with 1.4.x. Roger on 1.6.0 - I have that up and running (without issue) - I was trying to generate a puppet config for 1.5.x so I could validate against that as well - and obvioulsy went off on a tangent with the parcel scheme and the prefix directory that, I think, sent me down a spiral of doom. Anyway, much appreciated!
... View more
06-14-2014
06:36 PM
So I've been playing around with Accumulo 1.5.1 on a CM5 / CDH4.7 parcel based install (no issues on the RPM install) - and I'm unable to seem to get the native libraries on the classpath (should be straightforward, but it's not working). I'm assuming this is a cloudera parcel issue, since it works just fine with the RPM distribution. My accumulo classpath looks like <value>
$ACCUMULO_HOME/lib/accumulo-server.jar,
$ACCUMULO_HOME/lib/accumulo-core.jar,
$ACCUMULO_HOME/lib/accumulo-start.jar,
$ACCUMULO_HOME/lib/accumulo-fate.jar,
$ACCUMULO_HOME/lib/accumulo-proxy.jar,
$ACCUMULO_HOME/lib/[^.].*.jar,
$ZOOKEEPER_HOME/zookeeper[^.].*.jar,
$HADOOP_CONF_DIR,
/usr/share/cmf/lib/cdh5/*.jar,
$HADOOP_PREFIX/lib/hadoop/[^.].*.jar,
$HADOOP_PREFIX/lib/hadoop/lib/[^.].*.jar,
$HADOOP_PREFIX/lib/hadoop-hdfs/[^.].*.jar,
$HADOOP_PREFIX/lib/hadoop-mapreduce/[^.].*.jar,
$HADOOP_PREFIX/lib/hadoop-yarn/[^.].*.jar,
$HADOOP_PREFIX/lib/hadoop/lib/native/*,$HADOOP_PREFIX/[^.].*.jar,
$HADOOP_PREFIX/lib/[^.].*.jar,
</value> (yep, I'll clean it up a bit later - first just trying to get everything on the classpath) Where: $HADOOP_PREFIX=/opt/cloudera/parcels/CDH
$HADOOP_CONF_DIR=/etc/hadoop/conf
$ZOOKEEPER_HOME=/opt/cloudera/parcels/CDH/lib/zookeeper And I added: export LD_LIBRARY_PATH=${HADOOP_PREFIX}/lib/hadoop/lib/native:${LD_LIBRARY_PATH} Everything works fine, ran through the random walk test for 2 days - but I can't get the native libraries to load. I realize these are the types of things that would be run down when it's supported - but if someone could toss me a bone it would be much appreciated.
... View more