| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 | # Licensed to the Apache Software Foundation (ASF) under one# or more contributor license agreements.  See the NOTICE file# distributed with this work for additional information# regarding copyright ownership.  The ASF licenses this file# to you under the Apache License, Version 2.0 (the# "License"); you may not use this file except in compliance# with the License.  You may obtain a copy of the License at##     http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.status = INFOname = LlapDaemonLog4j2packages = org.apache.hadoop.hive.ql.log# list of propertiesproperty.llap.daemon.log.level = INFOproperty.llap.daemon.root.logger = consoleproperty.llap.daemon.log.dir = .property.llap.daemon.log.file = llapdaemon.logproperty.llap.daemon.historylog.file = llapdaemon_history.logproperty.llap.daemon.log.maxfilesize = 256MBproperty.llap.daemon.log.maxbackupindex = 20# list of all appendersappenders = console, RFA, HISTORYAPPENDER# console appenderappender.console.type = Consoleappender.console.name = consoleappender.console.target = SYSTEM_ERRappender.console.layout.type = PatternLayoutappender.console.layout.pattern = %d{ISO8601} %5p [%t%x] %c{2}: %m%n# rolling file appenderappender.RFA.type = RollingRandomAccessFileappender.RFA.name = RFAappender.RFA.fileName = ${sys:llap.daemon.log.dir}/${sys:llap.daemon.log.file}appender.RFA.filePattern = ${sys:llap.daemon.log.dir}/${sys:llap.daemon.log.file}_%iappender.RFA.layout.type = PatternLayoutappender.RFA.layout.pattern = %d{ISO8601} %5p [%t%x] %c{2}: %m%nappender.RFA.policies.type = Policiesappender.RFA.policies.size.type = SizeBasedTriggeringPolicyappender.RFA.policies.size.size = ${sys:llap.daemon.log.maxfilesize}appender.RFA.strategy.type = DefaultRolloverStrategyappender.RFA.strategy.max = ${sys:llap.daemon.log.maxbackupindex}# history file appenderappender.HISTORYAPPENDER.type = RollingRandomAccessFileappender.HISTORYAPPENDER.name = HISTORYAPPENDERappender.HISTORYAPPENDER.fileName = ${sys:llap.daemon.log.dir}/${sys:llap.daemon.historylog.file}appender.HISTORYAPPENDER.filePattern = ${sys:llap.daemon.log.dir}/${sys:llap.daemon.historylog.file}_%iappender.HISTORYAPPENDER.layout.type = PatternLayoutappender.HISTORYAPPENDER.layout.pattern = %m%nappender.HISTORYAPPENDER.policies.type = Policiesappender.HISTORYAPPENDER.policies.size.type = SizeBasedTriggeringPolicyappender.HISTORYAPPENDER.policies.size.size = ${sys:llap.daemon.log.maxfilesize}appender.HISTORYAPPENDER.strategy.type = DefaultRolloverStrategyappender.HISTORYAPPENDER.strategy.max = ${sys:llap.daemon.log.maxbackupindex}# list of all loggersloggers = EncodedReader, NIOServerCnxn, ClientCnxnSocketNIO, DataNucleus, Datastore, JPOX, HistoryLogger, LlapIoImpl, LlapIoOrc, LlapIoCache, LlapIoLockinglogger.EncodedReader.name = org.apache.hadoop.hive.ql.io.orc.encoded.EncodedReaderImpllogger.EncodedReader.level = INFOlogger.LlapIoImpl.name = LlapIoImpllogger.LlapIoImpl.level = INFOlogger.LlapIoOrc.name = LlapIoOrclogger.LlapIoOrc.level = WARNlogger.LlapIoCache.name = LlapIoCachelogger.LlapIoCache.level = WARNlogger.LlapIoLocking.name = LlapIoLockinglogger.LlapIoLocking.level = WARNlogger.NIOServerCnxn.name = org.apache.zookeeper.server.NIOServerCnxnlogger.NIOServerCnxn.level = WARNlogger.ClientCnxnSocketNIO.name = org.apache.zookeeper.ClientCnxnSocketNIOlogger.ClientCnxnSocketNIO.level = WARNlogger.DataNucleus.name = DataNucleuslogger.DataNucleus.level = ERRORlogger.Datastore.name = Datastorelogger.Datastore.level = ERRORlogger.JPOX.name = JPOXlogger.JPOX.level = ERRORlogger.HistoryLogger.name = org.apache.hadoop.hive.llap.daemon.HistoryLoggerlogger.HistoryLogger.level = INFOlogger.HistoryLogger.additivity = falselogger.HistoryLogger.appenderRefs = HistoryAppenderlogger.HistoryLogger.appenderRef.HistoryAppender.ref = HISTORYAPPENDER# root loggerrootLogger.level = ${sys:llap.daemon.log.level}rootLogger.appenderRefs = rootrootLogger.appenderRef.root.ref = ${sys:llap.daemon.root.logger}
 |