Member since
01-19-2017
3627
Posts
608
Kudos Received
361
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
226 | 08-02-2024 08:15 AM | |
3411 | 04-06-2023 12:49 PM | |
764 | 10-26-2022 12:35 PM | |
1503 | 09-27-2022 12:49 PM | |
1770 | 05-27-2022 12:02 AM |
04-06-2023
01:19 PM
@pankshiv1809 Can you share the spark-submit conf for UPSS_PROMO_PROMOTIONS Spark JOB ? JConsole, which helps to detect performance problems in the code including java.lang.OutOfMemoryErrors. Depending on the available memory on your cluster you can then re-adjust as suggested by @RangaReddy
... View more
04-06-2023
12:58 PM
@pankshiv1809 Can you share a more detailed log and background on your environment,Python versions etc Geoffrey
... View more
04-06-2023
12:49 PM
@SSandhu The first question is I am just wondering if you have an HDP subscription. If not sure you could independently run the below to see whether the repo URL is valid and reachable Display enabled HDP software repositories # yum repolist Clean out all HDP packages and metadata from cache # yum clean all Refresh HDP packages on your system # yum update Reinstall AMC yum reinstall ambari-metrics-collector The above steps should help you resolve AMC does not exist in the stack-select package
... View more
03-29-2023
04:47 PM
2 Kudos
@vciampa I tried to recreate your scenarion using HDP and ODBC ODBC screens I created a hive database and table and used a non ssl connection as shown below as my HDP is not Secured, though the ODBS delivers a certificate in C:\Program Files\Cloudera ODBC Driver for Apache Hive\lib\cacerts.pem Ping from Windows DSN Config ODBC config SSL Config Table creation Connect test So it does work for non-TLS but when I enable TLS I get the below because TLS is not enabled on my HDP cluster , I will try in install sa self signed certificate and revert Geoffrey
... View more
03-24-2023
06:53 AM
@ambari275 These are the steps to follow assuming you are logged in as root # su - hdfs $ klist -kt /etc/security/keytabs/hdfs-headless.keytab Then the output should give you the principal to use $ kinit -kt /etc/security/keytabs/hdfs-headless.keytab
... View more
03-23-2023
11:02 AM
@BrianChan HUE uses a back end database and it would be interesting if you shared the creation steps The DB configuration is in the hue.ini check the [database] section for the path to the DB (or look at /dump_config/, desktop, database). If MySQL/MariaDB please check the config in /etc/my.cnf [mysqld] ... bind-address=0.0.0.0 default-storage-engine=innodb sql_mode=STRICT_ALL_TABLES Verify the DB connectivity mysql -u hue -p Enter password: <password> quit The HUE database file seems gone or not readable
... View more
03-23-2023
07:15 AM
@deepikaw What is the version of RHEL/CentOS? Try removing the kernel quiet parameter in /etc/grub.conf Memory looks okay for Quicstart though the higher the better This message occurs when kickstarting a RHEL you need to provide another "vmlinuz" and "initrd.img" to kickstart the machine. In case for example of kickstarting RHEL x.3, I simply used the vmlinuz and initrd.img from RHEL x.4. higher version For "mp-BIOS bug :8254 timer not connected to IO-APIC"There is a kernel workaround, I believe booting with the kernel parameter "noapic" could work
... View more
03-23-2023
05:39 AM
@hive1 What is the hive version? Can you try the below and revert Set the below two properties before executing the rename partition hive> set fs.hdfs.impl.disable.cache=false; hive> set fs.file.impl.disable.cache=false; Then run the rename partition command hive> ALTER TABLE <table_name> (code='YATHAH%0188QW') RENAME TO PARTITION (code='new_name'); Share the output for further analysis
... View more
03-23-2023
05:26 AM
1 Kudo
@AbuSaiyeda According to the excerpt you've shared it looks memory-related. Can you share your cluster configurations? The memory settings should match the recommended settings in Ambari Server heap size Most probably your AMBARI_JVM_ARGS variable should be set to -Xmx4GB -Xmn2GB appropriate for 100 to 800 hosts. Share your Ambari-server logs that can give insights to whats could be the probable cause Geoffrey
... View more
01-17-2023
01:11 PM
@admin007 How are you trying to connect? Can yo share the error ? When you are connecting to an impalad running on the same machine the prompt will reflect the current hostname. $ impala-shell If you are connecting to an impalad running on a remote machine, and impalad is listening on a non-default port [21000] $ impala-shell -i some.other.hostname:port_number Hope that starts the conversation
... View more