Member since
07-08-2013
548
Posts
59
Kudos Received
53
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2569 | 08-17-2019 04:05 PM | |
2542 | 07-26-2019 12:18 AM | |
8792 | 07-17-2019 09:20 AM | |
4987 | 06-18-2018 03:38 AM | |
12444 | 04-06-2018 07:13 AM |
03-03-2016
12:47 PM
>... query by id filter, ... For clarification, when you say "=id==" are you referring to "hostId", or the unique "id" of the event. Reason is that in your supplied URL "...query=id==<hostid>", the "id" is a unique ID for an event [1]; however, <hostid> (HOST_IDS) key name within the "attributes" listing [1]. I think your filter is expected to return 0, unless you have valid the "id" for the event. Does it pull info if you change your query to filter the attributes.HOST_IDS? ie: http://cm:7180/api/v10/events?query=attributes.HOST_IDS==%22<hostid>%22 Let me know if this helps. [1] https://cloudera.github.io/cm_api/apidocs/v11/ns0_apiEvent.html
... View more
03-02-2016
03:42 PM
> If I have either the hostid or hostname, how can I pull back why the node is in a concerning status in CM using only the API? There should be a record in your events [1a,b], using the CM API try filtering the hostid/host attributes [2] Hope this helps [1a] http://cloudera-server:7180/cmf/events [1b] http://cloudera-server:7180/api/v10/events [2] https://cloudera.github.io/cm_api/apidocs/v11/path__events.html
... View more
01-30-2016
04:56 PM
1 Kudo
That seems to be Amazon Linux as you've mentined; are you able to choose RHEL/CentOS AMI, or any of the following listed supported OS [1][2] [1] http://www.cloudera.com/documentation/enterprise/5-4-x/topics/cm_ig_cm_requirements.html#cmig_topic_4_1_unique_1 [2] http://www.cloudera.com/documentation/director/latest/topics/director_deployment_ami.html
... View more
01-30-2016
10:06 AM
2 Kudos
The first issue has to do with NTP [1] and the second, is when the Agent attempted to read the json contents (possibly Service Monitor metrics), it encoutered an error hece the Error fetching metrics at 'http://host-hd-01.corp.nodalpoint.com:8086/jmx' Do you know which for which role the health check is reporting - for a reference, can you attach a screenshot? [1] http://www.cloudera.com/documentation/enterprise/latest/topics/install_cdh_enable_ntp.html
... View more
01-30-2016
05:09 AM
> Now upgrading to CDH5.5.1 using parcels would be okay? Or do you foresee any challenges Please follow the "Migrating from Packages to Parcels" [1] carefully. The documentation is straighforward and I don't forsee any challenges. I am here to help if you get stuck. [1] http://www.cloudera.com/documentation/enterprise/latest/topics/cm_ig_migrating_packages_to_parcels.html
... View more
01-30-2016
04:31 AM
> With Cloudera Express edition, I believe that we cannot use parcels for installation. Please confirm this. You can use parcels or packages with Cloudera Express edition. Listed here [1] are the features compared to Enterprise. [1] http://www.cloudera.com/documentation/enterprise/latest/topics/cm_ig_feature_differences.html
... View more
01-29-2016
09:14 AM
As the error indicates the listed hosts are still running CDH5.4.2, if you are using Parcels you will have to push the new parcels on the hosts. Use the following docs [1][2] as a guide. hope this helps [1] http://www.cloudera.com/documentation/enterprise/latest/topics/cm_ag_upgrade_cm5.html [2] http://www.cloudera.com/documentation/enterprise/latest/topics/install_upgrade_to_cdh55_parcels.html
... View more
01-27-2016
04:10 AM
> This indicates that agent is unable to connect to HOSTMONITOR, is HMON running? [27/Jan/2016 03:16:44 +0000] 3069 MonitorDaemon-Reporter throttling_logger ERROR Error sending messages to firehose: MGMT-HOSTMONITOR-244944378552b77b5c898d702d752f7f > This indicates that the command timed out when attempting to run a DNS test [1] [27/Jan/2016 03:19:46 +0000] 3069 DnsResolutionMonitor throttling_logger ERROR Timeout with args ['/usr/java/jdk1.7.0_67-cloudera/bin/java', '-classpath', '/usr/share/cmf/lib/agent-5.5.1.jar', 'com.cloudera.cmon.agent.DnsTest'] Example: [bash]# /usr/java/jdk1.7.0_67-cloudera/bin/java -classpath /usr/share/cmf/lib/agent-5.5.1.jar com.cloudera.cmon.agent.DnsTest > This indicates that supervisord [2] was not running at that time [27/Jan/2016 03:08:52 +0000] 3012 MainThread agent ERROR Failed to connect to previous supervisor. [1] http://www.cloudera.com/documentation/enterprise/latest/topics/cdh_ig_networknames_configure.html [2] "Agent Process Supervision in Detail" http://blog.cloudera.com/blog/2013/07/how-does-cloudera-manager-work/
... View more
01-26-2016
09:59 AM
2 Kudos
At first I'd make sure that there's no errors in the the agent log ie: # less /var/log/cloudera-scm-agent/cloudera-scm-agent.log Also, when you issue the below command is it pointing to the right folder? # alternatives --display impala-shell > ... To specify the parcel directory, local parcel repository, add a parcel repository ... that value is only for the .parcel files that CM Server downloads Please modify your -agent/config.ini uncomment and set the value for the below property, do the same if you have issues on other nodes. # vi /etc/cloudera-scm-agent/config.ini
...
# Parcel directory. Unpacked parcels will be stored in this directory.
# Downloaded parcels will be stored in <parcel_dir>/../parcel-cache
# parcel_dir=/opt/cloudera/parcels
... > Can I just symlink to CDH/bin? That is one of Cloudera Agents [1] function - hard restart the agent will normally fix the alternative issues [1] Agent parse the parcel metadata and creates the alternatives link, see /opt/cloudera/parcels/CDH/meta/alternatives.json
... View more