Vikram Srivastava created ACCUMULO-2280:
-------------------------------------------
Summary: Add ACCUMULO_TRACER_OPTS to bin/accumulo
Key: ACCUMULO-2280
URL: https://issues.apache.org/jira/browse/ACCUMULO-2280
Project: Accumulo
Issue Type: Bug
Components: scripts
Reporter: Vikram Srivastava
Priority: Minor
Not sure if it's intentional, but we allow java opts for all components to be
configured independently except for tracer, which has to rely on
"ACCUMULO_OTHER_OPTS":
{noformat}
case "$1" in
master) export ACCUMULO_OPTS="${ACCUMULO_GENERAL_OPTS}
${ACCUMULO_MASTER_OPTS}" ;;
gc) export ACCUMULO_OPTS="${ACCUMULO_GENERAL_OPTS} ${ACCUMULO_GC_OPTS}" ;;
tserver) export ACCUMULO_OPTS="${ACCUMULO_GENERAL_OPTS}
${ACCUMULO_TSERVER_OPTS}" ;;
monitor) export ACCUMULO_OPTS="${ACCUMULO_GENERAL_OPTS}
${ACCUMULO_MONITOR_OPTS}" ;;
logger) export ACCUMULO_OPTS="${ACCUMULO_GENERAL_OPTS}
${ACCUMULO_LOGGER_OPTS}" ;;
*) export ACCUMULO_OPTS="${ACCUMULO_GENERAL_OPTS} ${ACCUMULO_OTHER_OPTS}"
;;
esac
{noformat}
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)