Member since
09-25-2015
356
Posts
382
Kudos Received
62
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2364 | 11-03-2017 09:16 PM | |
1871 | 10-17-2017 09:48 PM | |
3730 | 09-18-2017 08:33 PM | |
4349 | 08-04-2017 04:14 PM | |
3389 | 05-19-2017 06:53 AM |
03-27-2018
09:04 PM
1 Kudo
The process owner for Hive LLAP daemon process has to be the same as the query executing user. When Hive Server Interactive (aka HSI) is brought up by Ambari, the LLAP daemons are owned by user hive. The executing user will also need to be hive which is what happens when hive.server2.enable.doAs is false. The intended usage of HSI is to be with impersonation disabled (hive.server2.enable.doAs=false). The end user authorization is assumed to be handled by Ranger Auth or SQL Standard Auth.
... View more
11-03-2017
09:16 PM
2 Kudos
Hive 2 is not exposed as a service that you add during install. It gets deployed and configured from the Hive config screen. To enable, go to the Hive config screen and flip the "Enable Interactive Query" slider. It will then bring up a popup and guide you through the configuration.
... View more
10-20-2017
10:30 PM
1 Kudo
This may be due to HDFS default replication set to 3. So the total space requirement would be 800GB * 3 = 2.4TB which exceeds 2.3TB that's available.
... View more
10-17-2017
09:48 PM
1 Kudo
The support matrix lists the OS that are officially supported, this means that they have gone through extensive deployment and certification testing. Choosing an OS for official support has criterions including the user/customer adoption, expect it in the upcoming update release on HDP-2.6.x. You can still go ahead and use the centos6 repo to install on CentOS 6.9 but Hortonworks will not officially support it.
... View more
09-26-2017
09:12 PM
1 Kudo
Have you given that a try, setting hive.metastore.warehouse.dir in hive-site.xml under spark conf.
... View more
09-26-2017
05:30 PM
1 Kudo
The property you want to change is "hive.metastore.warehouse.dir".
... View more
09-26-2017
05:27 PM
1 Kudo
Can you post the application log from the failed application application_1506422992590_0008? You can collect that by running yarn logs -applicationId application_1506422992590_0008 > app_logs.txt
... View more
09-22-2017
04:48 PM
2 Kudos
Reading Hive ACID ORC data has some issues, it seems the data is not visible unless you compact the table atleast once, see SPARK-16996. Hive ACID tables ORC data operations are currently not supported from Spark, see SPARK-15348.
... View more
09-18-2017
08:33 PM
1 Kudo
Typically BigSQL should be installed on 3 nodes at minimum, with BigSQL Master node on one node and BigSQL worker node on the other two. Also establish passwordless ssh for root user from BigSQL master node to the worker nodes. You can find detailed instructions from IBM BigSQL Install document. Make sure that the pre-requisites are followed before installing BigSQL.
... View more
09-18-2017
08:18 PM
2 Kudos
How many rows are you expecting from the output of this query? Beeline client in its default setting is prone to memory issues when large number of rows get fetched as it buffers all rows in memory. The workaround is to use the following argument when starting beeline. --incremental=true HIVE-7224 which was recently fixed will make that setting as default but for now you will need to use the above argument to beeline client. More documentation on that option and others is on Hive Wiki.
... View more