mirror of https://github.com/apache/druid.git
Specify node type so that the log filename can get resolved (#16282)
* specify node type so that the log filename can get resolved * Update distribution/docker/druid.sh Co-authored-by: Benedict Jin <asdf2014@apache.org> --------- Co-authored-by: Benedict Jin <asdf2014@apache.org>
This commit is contained in:
parent
a2223ce821
commit
ac42737242
|
@ -172,6 +172,9 @@ if [ -n "$DRUID_MAXDIRECTMEMORYSIZE" ]; then setJavaKey ${SERVICE} -XX:MaxDirect
|
|||
# However this behavior is not part of the spec and is thus implementation specific
|
||||
JAVA_OPTS="$(cat $SERVICE_CONF_DIR/jvm.config | xargs) $JAVA_OPTS"
|
||||
|
||||
# Specify node type used for log4j2.xml
|
||||
JAVA_OPTS="-Ddruid.node.type=$SERVICE $JAVA_OPTS"
|
||||
|
||||
if [ -n "$DRUID_LOG_LEVEL" ]
|
||||
then
|
||||
sed -ri 's/"info"/"'$DRUID_LOG_LEVEL'"/g' $COMMON_CONF_DIR/log4j2.xml
|
||||
|
|
Loading…
Reference in New Issue