Member since
03-14-2016
4721
Posts
1111
Kudos Received
874
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2452 | 04-27-2020 03:48 AM | |
4891 | 04-26-2020 06:18 PM | |
3977 | 04-26-2020 06:05 PM | |
3222 | 04-13-2020 08:53 PM | |
4930 | 03-31-2020 02:10 AM |
03-22-2017
06:23 AM
@Lifeng Ai Actually while running "distcp" you should increase the Memory arguments in the command line where you are running the distcp something like following: (When the datasize is too large) # export HADOOP_CLIENT_OPTS="-Xms4096m -Xmx4096m"
# hadoop distcp /source /target . Or please define it using 'HADOOP_CLIENT_OPTS' in hadoop-env.sh
... View more
03-22-2017
03:54 AM
1 Kudo
@rama Have you explored the following option:
1. installing the sysfsutils package: sudo apt install sysfsutils
2. Then append a line with that setting to /etc/sysfs.conf: kernel/mm/transparent_hugepage/enabled = never . Also please check the following as well: cat /sys/kernel/mm/transparent_hugepage/enabled
# always madvise [never]
cat /sys/kernel/mm/transparent_hugepage/defrag
# [always] madvise never
cat /proc/cmdline
# initrd=\initramfs-linux.img root=/dev/sda2 rw splash transparent_hugepage=never .
... View more
03-21-2017
10:26 AM
@Shalini Goel
Good to know that this issue is resolved. Please mark this thread as "Accepted" so that it will be helpful for others.
... View more
03-21-2017
09:38 AM
@Elvis Zhang
If it is fresh cluster then "Disable Kerberos" and "Enable Kerberos" should be of. Do you see those buttons present ?
If those are also not present then it means that the kerberos installation is not yes completed to finalize stage.
In that case you can close the current kerberos wizard (if it is already opened and then try enabling kerberos freshly)
... View more
03-21-2017
08:28 AM
@Shalini Goel It is strange to see the class "org.apache.atlas.hive.hook.HiveHook" in the stackTrace even if you deleted that hook from your hive config. Have your changes made via ambari got reflected properly to the host where you are running hive shell? - Can you please check and share the file " /etc/hive/conf/hive-site.xml" and verify if you have the following emtry in it ? <property>
<name>hive.exec.post.hooks</name>
<value>org.apache.hadoop.hive.ql.hooks.ATSHook</value>
</property>
<property>
<name>hive.exec.pre.hooks</name>
<value>org.apache.hadoop.hive.ql.hooks.ATSHook</value>
</property>
.
... View more
03-21-2017
08:20 AM
@Shalini Goel Are you still seeing the same stackTrace which has the following line (even after removing "org.apache.atlas.hive.hook.HiveHook" )? org.apache.atlas.hive.hook.HiveHook.registerProcess(HiveHook.java:309) at Can you please post the stackTrace again. It might be slightly different. .
... View more
03-21-2017
08:03 AM
@Elvis Zhang Please check your "krb5.conf" file if it is pointing the correct KDC host & Realm? The default on you can find in "/etc/krb5.conf" on the hosts. Also as you mentioned that you changed the realm name , so after that did you regenerate the keytabs? Ambari UI --> Admin (Tab) --> Kerberos --> "Regenerate Keytabs" Else the existing keytabs might be having old references. Still if it does not work then "Disable and then Enable" Kerberos should take care of this. But i guess regenerating keytabs should be ok.
... View more
03-21-2017
06:47 AM
1 Kudo
@nshetty We can search for "security_type" = Kerberos from teh following API call: http://AMBARI_HOST:8080/api/v1/clusters/CLUSTERNAME?fields=Clusters/security_type
... View more
03-21-2017
06:39 AM
@Shalini Goel In the stackTrace we see "org.apache.atlas.hive.hook.HiveHook" So can you try removing this property from your hive config and then try again. Ambari UI --> Hive --> Configs -> Advanced tab --> Search for "hive.exec.failure.hooks" and then from there you remove the mentioned property if present.
... View more
03-21-2017
05:31 AM
2 Kudos
@Neeraj Singh Apache Hadoop is just a major component of HDP (Hortonworks Data Platform). HDP includes a lots of other components in it. HDP is a suit of components that are tested and certified to work together. Please see the image explaining HDP in the following link: https://hortonworks.com/products/data-center/hdp/ . Where as the HDF (Hortonworks Data Flow) includes the following:
HDF includes the following services: NiFi, Storm, Kafka, Zookeeper, Ambari, Ranger .
... View more