You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@accumulo.apache.org by David Medinets <da...@gmail.com> on 2011/12/30 07:04:37 UTC

Re: Failed to load native map library: libNativeMap-Linux-i386-32.so (RESOLVED)

I changed my configuration to this:

###########
# Configure for 4Gb RAM
###########
vi conf/accumulo-site.xml
  tserver.memory.maps.max=256M
  tserver.cache.index.size=128M
vi conf/accumulo-env.sh
  test -z "$ACCUMULO_TSERVER_OPTS" && export
ACCUMULO_TSERVER_OPTS="${POLICY} -Xmx512m -Xms512m -Xss128k"
  test -z "$ACCUMULO_MASTER_OPTS"  && export
ACCUMULO_MASTER_OPTS="${POLICY} -Xmx512m -Xms128m"
  test -z "$ACCUMULO_MONITOR_OPTS" && export
ACCUMULO_MONITOR_OPTS="${POLICY} -Xmx256m -Xms128m"
  test -z "$ACCUMULO_GC_OPTS"      && export
ACCUMULO_GC_OPTS="-Xmx256m -Xms128m"
  test -z "$ACCUMULO_LOGGER_OPTS"  && export
ACCUMULO_LOGGER_OPTS="-Xmx128m -Xms64m"
  test -z "$ACCUMULO_GENERAL_OPTS" && export
ACCUMULO_GENERAL_OPTS="-XX:+UseConcMarkSweepGC
-XX:CMSInitiatingOccupancyFraction=75"
  test -z "$ACCUMULO_OTHER_OPTS"   && export
ACCUMULO_OTHER_OPTS="-Xmx256m -Xms128m"

And accumulo is working. These settings are probably totally wrong,
but I just wanted to get the product running with a baby system.

Thanks for your help, everyone.