Member since
07-13-2016
2
Posts
0
Kudos Received
0
Solutions
07-13-2016
08:54 AM
Is there any workaround/Patch available for the same in HDP 2.4.2 .. Becasue on HDP 2.3.6 said scenario is working fine on Spark Version 1.5.2.. below is sample: [root@****-1316 ~]# spark-sql
SET hive.support.sql11.reserved.keywords=false
SET spark.sql.hive.version=1.2.1
SET spark.sql.hive.version=1.2.1
spark-sql> create table customer1(id int ,name string, email string) clustered by (id) into 2 buckets stored as orc ;
OK
Time taken: 5.225 seconds
spark-sql> select * from customer1;
Time taken: 0.402 seconds
spark-sql>
... View more