From 0019005a2d0f150fd00ad926d054a8beca4bbd68 Mon Sep 17 00:00:00 2001 From: Nick Lavers Date: Tue, 17 Jan 2017 12:14:38 +0000 Subject: [SPARK-19219][SQL] Fix Parquet log output defaults ## What changes were proposed in this pull request? Changing the default parquet logging levels to reflect the changes made in PR [#15538](https://github.com/apache/spark/pull/15538), in order to prevent the flood of log messages by default. ## How was this patch tested? Default log output when reading from parquet 1.6 files was compared with and without this change. The change eliminates the extraneous logging and makes the output readable. Author: Nick Lavers Closes #16580 from nicklavers/spark-19219-set_default_parquet_log_level. --- sql/core/src/test/resources/log4j.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sql/core/src/test/resources/log4j.properties') diff --git a/sql/core/src/test/resources/log4j.properties b/sql/core/src/test/resources/log4j.properties index 25b8173821..2e5cac1295 100644 --- a/sql/core/src/test/resources/log4j.properties +++ b/sql/core/src/test/resources/log4j.properties @@ -53,5 +53,5 @@ log4j.additivity.hive.ql.metadata.Hive=false log4j.logger.hive.ql.metadata.Hive=OFF # Parquet related logging -log4j.logger.org.apache.parquet=ERROR -log4j.logger.parquet=ERROR +log4j.logger.org.apache.parquet.CorruptStatistics=ERROR +log4j.logger.parquet.CorruptStatistics=ERROR -- cgit v1.2.3