62 lines
2.8 KiB
Properties
62 lines
2.8 KiB
Properties
###
|
|
# 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 = warn
|
|
name = HudiConsoleLog
|
|
|
|
# Set everything to be logged to the console
|
|
appender.console.type = Console
|
|
appender.console.name = CONSOLE
|
|
appender.console.layout.type = PatternLayout
|
|
appender.console.layout.pattern = %d{yy/MM/dd HH:mm:ss} %p %c{1}: %m%n
|
|
|
|
# Root logger level
|
|
rootLogger.level = warn
|
|
# Root logger referring to console appender
|
|
rootLogger.appenderRef.stdout.ref = CONSOLE
|
|
|
|
# Set the default spark-shell log level to WARN. When running the spark-shell, the
|
|
# log level for this class is used to overwrite the root logger's log level, so that
|
|
# the user can have different defaults for the shell and regular Spark apps.
|
|
logger.apache_spark_repl.name = org.apache.spark.repl.Main
|
|
logger.apache_spark_repl.level = warn
|
|
# Set logging of integration testsuite to INFO level
|
|
logger.hudi_integ.name = org.apache.hudi.integ.testsuite
|
|
logger.hudi_integ.level = info
|
|
# Settings to quiet third party logs that are too verbose
|
|
logger.apache_spark_jetty.name = org.spark_project.jetty
|
|
logger.apache_spark_jetty.level = warn
|
|
logger.apache_spark_jett_lifecycle.name = org.spark_project.jetty.util.component.AbstractLifeCycle
|
|
logger.apache_spark_jett_lifecycle.level = error
|
|
logger.apache_spark_repl_imain.name = org.apache.spark.repl.SparkIMain$exprTyper
|
|
logger.apache_spark_repl_imain.level = info
|
|
logger.apache_spark_repl_iloop.name = org.apache.spark.repl.SparkILoop$SparkILoopInterpreter
|
|
logger.apache_spark_repl_iloop.level = info
|
|
logger.parquet.name = org.apache.parquet
|
|
logger.parquet.level = error
|
|
logger.spark.name = org.apache.spark
|
|
logger.spark.level = warn
|
|
# Disabling Jetty logs
|
|
logger.jetty.name = org.apache.hudi.org.eclipse.jetty
|
|
logger.jetty.level = error
|
|
# SPARK-9183: Settings to avoid annoying messages when looking up nonexistent UDFs in SparkSQL with Hive support
|
|
logger.hive_handler.name = org.apache.hadoop.hive.metastore.RetryingHMSHandler
|
|
logger.hive_handler.level = fatal
|
|
logger.hive_func_registry.name = org.apache.hadoop.hive.ql.exec.FunctionRegistry
|
|
logger.hive_func_registry.level = error
|