Member since
03-06-2020
398
Posts
54
Kudos Received
35
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
148 | 11-21-2024 10:12 PM | |
1003 | 07-23-2024 10:52 PM | |
1143 | 05-16-2024 12:27 AM | |
3251 | 05-01-2024 04:50 AM | |
1416 | 03-19-2024 09:23 AM |
05-03-2023
03:24 AM
Hi, We may need to check the complete error stacktraces from Hue runcpserver log - /var/log/hue are you able to provide the error stacktarces ? Have you checked any LDAP group is missing in Hue or not syncrosnised? Regards, Chethan YM
... View more
05-03-2023
02:17 AM
Hi @sukui Can you add following --llvm_cpu_attr_whitelist to Impala Daemon Command Line Argument Advanced Configuration Snippet (Safety Valve). --llvm_cpu_attr_whitelist=adx,aes,avx,avx2,bmi,bmi2,cmov,cx16,f16c,fma,fsgsbase,hle,invpcid,lzcnt,mmx,movbe,pclmul,popcnt,prfchw,rdrnd,rdseed,rtm,smap,sse,sse2,sse3,sse4.1,ssse3,xsave,xsaveopt Restart impala and see if it helps. Regards, Chethan YM
... View more
03-31-2023
02:51 AM
Hi, What is the authentication mechanism given in driver? Can you change the Authentication in driver to Kerberos and provide the user kerberos credentials user and give a try? Regards, Chethan YM
... View more
03-31-2023
02:43 AM
1 Kudo
Hi, Can you use "spark.sql.htl.check=false" parameter in your spark job and give a try? Regards, Chethan YM
... View more
02-16-2023
09:29 PM
1 Kudo
Hi, Do you mean partition retention time for Hive tables? If yes please refer the below documentation. https://docs.cloudera.com/HDPDocuments/HDP3/HDP-3.1.5/using-hiveql/content/hive-set-partition-retention.html The above error you are seeing looks like a syntax error with in your query. Regards, Chethan YM
... View more
12-26-2022
04:51 AM
Hi, -> Can you check user has sudo/root permissions on these hosts? -> Can you do agent hard restart on these hosts and try? -> recheck private key is valid and correct one. Regards, Chethan YM
... View more
12-18-2022
02:39 AM
Hi, Can you create a separate user in the database for each service and retry? You should NOT use the root user for all databases. Refer below doc: https://docs.cloudera.com/documentation/enterprise/latest/topics/cm_ig_extrnl_pstgrs.html#cmig_topic_5_6_2 Regards, Chethan YM
... View more
12-18-2022
02:23 AM
Hi, Where you are redirecting the output to? for csv file? What is the output from impala-shell terminal if you do not redirect the output? It looks like caused by the csv module when impala is using it to export the data. # csv.writer expects a file handle to the input. # cStringIO is used as the temporary buffer. temp_buffer = StringIO() writer = csv.writer(temp_buffer, delimiter=self.field_delim, lineterminator='\n', quoting=csv.QUOTE_MINIMAL) writer.writerows(rows) Seems to be we cannot change this since it is needs to modified at code level. https://github.com/apache/impala/blob/014c455aaaa38010ae706228f7b439c080c0bc7d/shell/shell_output.py... Regards, Chethan YM
... View more
12-18-2022
02:02 AM
Hi, -> Can you try with -Doraoop.timestamp.string=false property? -> Can you try with sqoop type mapping parameters as per below doc and see? https://sqoop.apache.org/docs/1.4.6/SqoopUserGuide.html#_java_sql_timestamp:~:text=on%20all%20databases.-,7.2.8.%C2%A0Controlling%20type%20mapping,-Sqoop%20is%20preconfigured Regards, Chethan YM
... View more
12-18-2022
01:57 AM
Hi, > Add the below configuration in HDFS from CM UI: CM -> hdfs -> Configuration hadoop.proxyuser.hive.hosts = * hadoop.proxyuser.hive.groups = * > If the above is already set, please disable the DB notification API auth. In Hive and Hive_On_Tez Service: In Hive Service Advanced Configuration hive-site safety value: Name: hive.metastore.event.db.notification.api.auth Value: false Restart stale configs and check if it works. Regards, Chethan YM
... View more