yaooqinn commented on pull request #35117: URL: https://github.com/apache/spark/pull/35117#issuecomment-1007171965
> e you saw the warning in the maste ``` bin/spark-shell -c spark.sql.orc.impl=hive 22/01/07 14:22:27 WARN Utils: Your hostname, hulk.local resolves to a loopback address: 127.0.0.1; using 10.242.189.214 instead (on interface en0) 22/01/07 14:22:27 WARN Utils: Set SPARK_LOCAL_IP if you need to bind to another address Using Spark's default log4j profile: org/apache/spark/log4j-defaults.properties Setting default log level to "WARN". To adjust logging level use sc.setLogLevel(newLevel). For SparkR, use setLogLevel(newLevel). 22/01/07 14:22:31 WARN NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable Spark context Web UI available at http://10.242.189.214:4040 Spark context available as 'sc' (master = local[*], app id = local-1641536551893). Spark session available as 'spark'. Welcome to ____ __ / __/__ ___ _____/ /__ _\ \/ _ \/ _ `/ __/ '_/ /___/ .__/\_,_/_/ /_/\_\ version 3.3.0-SNAPSHOT /_/ 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(0, 3, 1, 4).write.option("compression", "zstd").orc("./spark-warehouse/zstd_1") 22/01/07 14:22:48 WARN 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> spark.version res1: String = 3.3.0-SNAPSHOT scala> spark.sql("select version()").show +--------------------+ | version()| +--------------------+ |3.3.0 5880df41f50...| +--------------------+ scala> ``` I have a pre-built version against master on Dec. 2021. the case I use is `spark.range(0, 3, 1, 4).write.option("compression", "zstd").orc("./spark-warehouse/zstd_1")` you can help double-check on your side -- 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]
