yaooqinn commented on pull request #35117:
URL: https://github.com/apache/spark/pull/35117#issuecomment-1007164067
@dongjoon-hyun the logger here in 3.2 is `INFO`
```scala
bin/spark-shell -c spark.sql.orc.impl=hive
Setting default log level to "WARN".
To adjust logging level use sc.setLogLevel(newLevel). For SparkR, use
setLogLevel(newLevel).
Spark context Web UI available at http://10.242.189.214:4040
Spark context available as 'sc' (master = local[*], app id =
local-1641535524296).
Spark session available as 'spark'.
Welcome to
____ __
/ __/__ ___ _____/ /__
_\ \/ _ \/ _ `/ __/ '_/
/___/ .__/\_,_/_/ /_/\_\ version 3.2.0
/_/
Using Scala version 2.12.15 (Java HotSpot(TM) 64-Bit Server VM, Java
1.8.0_251)
Type in expressions to have them evaluated.
Type :help for more information.
scala> spark.range(3).write.option("compression",
"zstd").orc("./spark-warehouse/zstdtest0")
scala> spark.read.text("./sparksql.log").filter(r =>
r.getString(0).contains("This could be due to the output format not")).head
res1: org.apache.spark.sql.Row = [22/01/07 14:05:37.195 Executor task launch
worker for task 0.0 in stage 0.0 (TID 0) INFO BasicWriteTaskStatsTracker:
Expected 1 files, but only saw 0. This could be due to the output format not
writing empty files, or files being not immediately visible in the filesystem.]
scala>
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]