Member since
11-04-2015
260
Posts
44
Kudos Received
33
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2515 | 05-16-2024 03:10 AM | |
1532 | 01-17-2024 01:07 AM | |
1551 | 12-11-2023 02:10 AM | |
2290 | 10-11-2023 08:42 AM | |
1572 | 09-07-2023 01:08 AM |
01-16-2022
11:42 PM
Hello, problem was with OOO memory, after add some, it looks ok. Thank for advice. Best regards Kamil
... View more
01-07-2022
09:37 AM
@cardozogp Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks
... View more
01-06-2022
05:51 AM
This appears to be the cause. Switching to MS Edge avoided the HSTS feature in Chrome. Will look at enabling HTTPS on all UIs though since that is the correct solution in the longterm (spark.ssl.historyServer.enabled option is currently set to false).
... View more
01-05-2022
01:34 AM
Hi Mszurap , thanks for the reply . Impala query profile? --showing same error its not a dynamic partitioning and there is only one insert operation mentioned in query. CM > Impala > Queries page-- showing same error no multiple inserts Thanks, Syed
... View more
01-04-2022
10:44 AM
@saurabh_ka
It looks like you've got a solution, could you please mark the appropriate reply as the solution? It will make it easier for others to find the answer in the future. Thank you!
... View more
11-30-2021
10:46 PM
@npr73, have any of the replies helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.
... View more
11-30-2021
10:28 PM
@HareshAmin, Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.
... View more
11-17-2021
09:16 PM
@KeithLeoIdeam Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. If you are still experiencing the issue, can you provide the information @mszurap has requested?
... View more
02-10-2021
01:23 AM
Hi Zara, You need to check a couple of things - which may give more clues on the why. 1. Are you using the latest Hive JDBC driver? (is it HDP or CDH/CDP?) Check out https://www.cloudera.com/downloads/connectors/hive/jdbc/2-6-11.html 2. Do you get the same error if you use backticks for the database name and/or for the table name? select count(*) from `dbname`.`tablename` where partition_key='xxxxx'; 3. Did you look at the HiveServer2 logs? What do they show you? What was the real query submitted to the HS2 and what was the failure there? What does it look like for a non-partitioned table? 4. The "UseNativeQuery" option of the JDBC driver sometimes can solve such interesting issues - as it is a flag whether the Hive query is already translated to a Hive native format. Check the docs. https://docs.cloudera.com/documentation/other/connectors/hive-jdbc/2-6-11/Cloudera-JDBC-Driver-for-Apache-Hive-Install-Guide.pdf 5. Also you can turn on debug level logs at the JDBC driver side, see LogLevel and LogPath JDBC connection string properties.
... View more
10-05-2020
01:03 AM
I would not advise to do this - only if you have no other options and you are sure there are classpath problems (this suggests you had that - likely not having set up the Spark service dependency with Hive). Always check the HS2 logs first what is your problem. With including all the hadoop jars to SPARK_DIST_CLASSPATH you submit and upload lots of jars to the container classpath unnecessarily, which will slow down the job submission time.
... View more