Re: Difference in behavior for Spark 3.0 vs Spark 3.1 "create database "

2022-01-11 Thread Wenchen Fan
Hopefully, this StackOverflow answer can solve your problem: https://stackoverflow.com/questions/47523037/how-do-i-configure-pyspark-to-write-to-hdfs-by-default Spark doesn't control the behavior of qualifying paths. It's decided by certain configs and/or config files. On Tue, Jan 11, 2022 at

Re: Difference in behavior for Spark 3.0 vs Spark 3.1 "create database "

2022-01-10 Thread Pablo Langa Blanco
Hi Pralabh, If it helps, it is probably related to this change https://github.com/apache/spark/pull/28527 Regards On Mon, Jan 10, 2022 at 10:42 AM Pralabh Kumar wrote: > Hi Spark Team > > When creating a database via Spark 3.0 on Hive > > 1) spark.sql("create database test location

Difference in behavior for Spark 3.0 vs Spark 3.1 "create database "

2022-01-10 Thread Pralabh Kumar
Hi Spark Team When creating a database via Spark 3.0 on Hive 1) spark.sql("create database test location '/user/hive'"). It creates the database location on hdfs . As expected 2) When running the same command on 3.1 the database is created on the local file system by default. I have to prefix