Member since
05-09-2016
421
Posts
54
Kudos Received
32
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2467 | 04-22-2022 11:31 AM | |
2201 | 01-20-2022 11:24 AM | |
2084 | 11-23-2021 12:53 PM | |
2800 | 02-07-2018 12:18 AM | |
4645 | 06-08-2017 09:13 AM |
04-22-2022
11:31 AM
Hi @ToddP Can you try after setting below? set hive.vectorized.execution.enabled=false;
... View more
04-19-2022
09:39 AM
This error does not looks to be coming from Cloudera JDBC driver. This error is loading org.apache.hive.jdbc. Cloudera's driver name start with com.cloudera*
... View more
04-14-2022
03:46 PM
Hi Video KB you are following is more than 2 years old. Try using Cloudera JDBC driver for hive. You can download the latest driver and user guide from below links. https://www.cloudera.com/downloads/connectors/hive/jdbc/2-6-17.html https://docs.cloudera.com/documentation/other/connectors/hive-jdbc/2-6-17.html
... View more
04-05-2022
02:24 PM
Did you try the hint mentioned in ERROR? Try : <hiveserevr2 host>:10000/; Are you missing a '/' after the hostname
... View more
02-16-2022
08:16 AM
Hi @Priyanka26 I will recommend to get this checked using cloudera support case. LLAP configuration has lot of tuning options which is difficult to look at over community questions.
... View more
02-04-2022
01:47 PM
Hi @Priyanka26 The limit is coming from below setting. llap memory per daemon = 75 Gb
... View more
01-20-2022
11:24 AM
1 Kudo
Yes, there are lot of places to check but without knowing what are you looking for you will be lost. You can start with what you see on screen / console where you run the query. In beeline you see tez job summary which has lot of details to look at. example of one of the tuning guide is below https://community.cloudera.com/t5/Community-Articles/Demystify-Apache-Tez-Memory-Tuning-Step-by-Step/ta-p/245279 Update: I see you are using cdh6 which does not have tez. You can refer below link for cdh https://docs.cloudera.com/documentation/enterprise/6/6.1/topics/admin_hive_tuning.html#concept_u51_lkv_cv
... View more
01-20-2022
10:37 AM
1 Kudo
Hi Ulises, This is expected. When you do select * without any complex aggregation / function hive can directly read the data from hdfs / files But in case of count it need to do computation which involve creating job and doing the required aggregation which will take time.
... View more
12-08-2021
01:22 PM
Please check official mysql documentation as well. https://dev.mysql.com/doc/refman/5.7/en/log-file-maintenance.html
... View more
11-23-2021
12:53 PM
Hi @Andyjmoss As you already pointed https://community.cloudera.com/t5/Support-Questions/How-are-number-of-mappers-determined-for-a-query... There is no limit per query, you can only adjust max and min grouping size to play around on mapper tasks. Would this then impact the structure of data stored by my data? No this only affects how much data each map task will get.
... View more