Re: Support for views/ virtual tables in SparkSQL

2015-11-10 Thread Sudhir Menon
Thanks Zhan, thanks Michael. I was already going down the temp table path, will check out the experimental native view support Suds On Tue, Nov 10, 2015 at 11:22 AM, Michael Armbrust wrote: > We do support hive style views, though all tables have to be visible to > Hive. You can also turn on t

Re: Support for views/ virtual tables in SparkSQL

2015-11-10 Thread Michael Armbrust
We do support hive style views, though all tables have to be visible to Hive. You can also turn on the experimental native view support (but it does not canonicalize the query). set spark.sql.nativeView = true On Mon, Nov 9, 2015 at 10:24 PM, Zhan Zhang wrote: > I think you can rewrite those

Re: Support for views/ virtual tables in SparkSQL

2015-11-09 Thread Zhan Zhang
I think you can rewrite those TPC-H queries not using view, for example registerTempTable Thanks. Zhan Zhang On Nov 9, 2015, at 9:34 PM, Sudhir Menon wrote: > Team: > > Do we plan to add support for views/ virtual tables in SparkSQL anytime soon? > Trying to run the TPC-H workload and failin