Member since
08-17-2017
54
Posts
2
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
14210 | 08-20-2017 11:20 AM |
05-14-2020
03:06 PM
1 Kudo
@ansharma1 You can run the following query in Ambari DB SELECT view_instance_id,resource_id,view_name, cluster_handle,cluster_type FROM viewinstance; Above query will show that the view which is causing the problem might not be associated with any cluster_handle. (cluster_handle is basically the cluster_id, which you can see in the clusters table). If cluster_handle for a view is not correctly updated then you might see that kind of message: org.apache.ambari.server.view.IllegalClusterException: Failed to get cluster information associated with this view instance If you want to use the same old View to work fine (instead of creating a new Instance of that view) then you might have to make sure to update the cluster_handle for that view instance is set correctly. Like 1. Take ambari DB dump (latest dump for backup), As we are going to change the DB manually. 2. Stop ambari-server 3. Run the following queries in the amabri DB. NOTE: Following is just a dummy query the values for 'cluster_handle' and 'view_instance_id' in that query may vary. UPDATE viewinstance SET cluster_handle = 4 WHERE view_instance_id=3;
... View more
09-04-2017
09:50 AM
@Kishore Kumar Can you check the /etc/hosts on the cluster nodes and make sure the entries are like IP:FQDN : short-name optional And the FQDN on each host should be the exact output of # hostname -f
... View more
10-27-2017
04:17 PM
what is the difference bt solr installting using MPACK and solr installing using Ambari infra for Ranger? is it lke Ambari infra is specific to Ranger.? @Jay SenSharma , what is difference between solr installation using MPACK and Solar installation using Ambari infra service for ranger? ie. is it Ambari infra is specific to Ranger or I can use either of them (MPACK or Ambari infra) as alternatives to each other? or one of it being used for old versions of hadoop @Jay SenSharma
... View more
08-23-2017
07:33 AM
@Geoffrey Shelton Okot . Sorry i missed the last message . Can you please let me know how to do Accept the Response ?
... View more
08-17-2017
09:17 AM
@Kishore Kumar Good to know that after yum clean the previous issue related to "mysql-connector-java" installation is gone. yum clean all - The issue which you reported in your previous response "space issue for "Mertic Collector" is different from the actual issue that is reported to this thread. So it is better to look into this new issue as part of a new HCC thread.
... View more