Member since
11-11-2019
636
Posts
34
Kudos Received
27
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 967 | 10-09-2025 12:29 AM | |
| 8374 | 02-19-2025 09:43 PM | |
| 2443 | 02-28-2023 09:32 PM | |
| 5077 | 02-27-2023 03:33 AM | |
| 26763 | 12-24-2022 05:56 AM |
08-15-2022
10:19 AM
Te problem improved upgrading the driver version. It still persists, but is rarer.
... View more
08-12-2022
05:23 AM
@mareb you could use a code/text sharing service to store the code and share the link here
... View more
07-15-2022
07:25 PM
Could help to explain what's the meaning of first 2 sentence? Set Hive..... What would happen if we don't have 2 sentences? How would that impact our query? Thanks.
... View more
02-02-2022
04:22 AM
@asishThat was also my impression, but I was not able to find any solid confirmation. Eventually I kerberized ZK, correct bunch of playbooks to reflect that, and it works fine now.
... View more
01-24-2022
10:39 PM
yes, It exists in the hive CDH source. org.apache.hadoop.hive.ql.udf package is part of hive-exec.jar. PFB [hive@node3 lib]$ /usr/jdk64/jdk1.8.0_112/bin/jar -tvf hive-exec.jar | grep "org.apache.hadoop.hive.ql.udf" | wc -l 660
... View more
01-08-2022
04:40 AM
@drgenious You can use set hive.merge.tezfiles=true; to fix merge file issue
... View more
11-25-2021
07:36 AM
@luigui @MBohlmann I believe you are hitting https://issues.apache.org/jira/browse/HIVE-22260
... View more
11-12-2021
02:15 AM
AFAIK the table location should be set at the time of Creation. You can set files in a different location. You can use ALTER TABLE jsont1 SET LOCATION "hdfs://mycluster:8020/jsam/j1"; to change the location and need to move the files manually from old location to new location.
... View more
10-04-2021
08:50 AM
@enirys You could refer to the following doc for Hive tuning: https://docs.cloudera.com/HDPDocuments/HDP2/HDP-2.6.5/bk_hive-performance-tuning/content/ch_connectivity-admission-control.html#guidelines-hiveserver2-heaps If you have other services running on the same HS2 node as well, you might want to reduce Hive heap size or move a service to a different node. Are you expecting too many connections as explained in the above doc, else you might want to bring down HS2 heap size? If you do not see too many connections, but notice high heap usage, you might want to take a heap dump as @asish mentioned, and see if there is memory leak. Load balancing across HS2 could take place based on how you are accessing Hive. You could use zooKeeper based connection string.
... View more
09-30-2021
10:48 AM
1 Kudo
yes that was indeed a problem 🙂 I was about to comment on that
... View more