Member since
07-09-2019
422
Posts
97
Kudos Received
58
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
427 | 07-06-2025 05:24 AM | |
444 | 05-28-2025 10:35 AM | |
2158 | 08-26-2024 08:17 AM | |
2757 | 08-20-2024 08:17 PM | |
1135 | 07-08-2024 04:45 AM |
09-17-2020
05:27 AM
2 Kudos
@Nivas12 You can define an alert dispatcher which Ambari will invoke when alerts fire: Refer https://cwiki.apache.org/confluence/display/AMBARI/Creating+a+Script-based+Alert+Dispatcher
... View more
09-04-2020
10:14 PM
@saivenkatg55 Use the below commands to remove the background operation entry in ambari database. # select task_id,role,role_command from host_role_command where status='IN_PROGRESS'; The above command will list all IN_PROGRESS status , You can also check for QUEUED or PENDING STATE by replacing 'IN_PROGRESS' with QUEUED or PENDING # update host_role_command set status='ABORTED' where status='QUEUED'; Use the above command to change the state to ABORTED
... View more
08-01-2020
08:06 AM
1 Kudo
@Marek You need to install numpy package on all the node managers, Use below command to install numpy package and rerun the code. # pip install numpy
... View more
07-26-2020
07:28 AM
@ashish_inamdar can you confirm is ambari-server and ambari agent is running as non-root user
... View more
06-27-2020
01:03 AM
@shrikant_bm Can you try changin "sun.security.krb5.disableReferrals=false" to "sun.security.krb5.disableReferrals=true" in java.security file under JDK HOME on namenode host Example: /usr/java/jdk1.8.0_252/jre/lib/security/java.security file.
... View more
06-05-2020
06:00 AM
@shrikant_bm Can you confirm java version
... View more
01-12-2020
03:40 AM
@murali2425 Refer https://community.cloudera.com/t5/Community-Articles/Storing-Apache-NiFi-Versioned-Flows-in-a-Git-Repository/ta-p/248713
... View more
11-14-2019
09:56 PM
@jeff_watson To enable debug on superset logs, follow below steps Stop Superset from Ambari Add this line at the end of /usr/hdp/current/superset/lib/python3.4/site-packages/superset/__init.py logging.getLogger('flask_appbuilder').setLevel(logging.DEBUG) 3. Then Start superset manually using following command source /usr/hdp/current/superset/conf/superset-env.sh ; /usr/hdp/current/superset/bin/python3.4 /usr/hdp/current/superset/bin/gunicorn --log-level debug -b `hostname`:9088 superset:app
... View more
11-07-2019
09:15 PM
@Manoj690 Check if their is any ranger policy or you can try disabling Authorization for HiveServer2 as follows: ### Ambari UI > Hive > Configs > Advanced > Advanced Hiveserver2-Site > Uncheck "Enable Authorization" Option > Restart Hive Service and run the query
... View more
11-07-2019
06:13 AM
@nicolamarangoni can you share interpreter settings
... View more