Re: regionserver jar dependeces

2014-04-14 Thread Stack
On Sat, Apr 12, 2014 at 7:01 AM, John Hancock wrote: > for hbase 0.98.1 how do I find a list of jar files that I would need to add > to HBASE_CLASSPATH in order to start a regionserver? >

Re: regionserver jar dependeces

2014-04-13 Thread Jean-Marc Spaggiari
You can also use "bin/hbase classpath" to see what the classpath should be. 2014-04-12 10:55 GMT-04:00 Ted Yu : > Assuming you deploy HBase from tar ball, bin/hbase would add lib jars > to CLASSPATH at runtime. > > See the following from bin/hbase: > > # Add libs to CLASSPATH > for f in $HBASE_H

Re: regionserver jar dependeces

2014-04-12 Thread Ted Yu
Assuming you deploy HBase from tar ball, bin/hbase would add lib jars to CLASSPATH at runtime. See the following from bin/hbase: # Add libs to CLASSPATH for f in $HBASE_HOME/lib/*.jar; do CLASSPATH=${CLASSPATH}:$f; done In the same file : # HBASE_CLASSPATH Extra Java CLASSPATH entries. Che

regionserver jar dependeces

2014-04-12 Thread John Hancock
for hbase 0.98.1 how do I find a list of jar files that I would need to add to HBASE_CLASSPATH in order to start a regionserver?