<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Help on HadoopOps in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55450#M3212</link>
    <description>&lt;P&gt;actually, most CDH4 deployments do not use YARN/MR2 yet.  and many customers are using HadoopOps on CDH4.  see the discussion here:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://splunk-base.splunk.com/answers/77676/hadoop-ops-app-and-cloudera"&gt;http://splunk-base.splunk.com/answers/77676/hadoop-ops-app-and-cloudera&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Jun 2013 20:50:50 GMT</pubDate>
    <dc:creator>pierre4splunk</dc:creator>
    <dc:date>2013-06-11T20:50:50Z</dc:date>
    <item>
      <title>Help on HadoopOps</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55444#M3206</link>
      <description>&lt;P&gt;Hi all,&lt;BR /&gt;
Anybody aware of these warnings in HadoopOps app?&lt;/P&gt;

&lt;P&gt;Lookup table 'hadoop_host2maxcpu' is empty.&lt;BR /&gt;
No matching fields exist&lt;BR /&gt;
Lookup table 'hadoop_host2mapred' is empty.&lt;/P&gt;

&lt;P&gt;why am getting these?&lt;BR /&gt;
how to resolve?&lt;BR /&gt;
Should i need to do any conf setting??&lt;/P&gt;

&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 14:02:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55444#M3206</guid>
      <dc:creator>ncbshiva</dc:creator>
      <dc:date>2020-09-28T14:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help on HadoopOps</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55445#M3207</link>
      <description>&lt;P&gt;IF ANY ONE KNOWS PLZ HELP ME&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2013 08:47:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55445#M3207</guid>
      <dc:creator>ncbshiva</dc:creator>
      <dc:date>2013-06-06T08:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Help on HadoopOps</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55446#M3208</link>
      <description>&lt;P&gt;This suggest that 'ps' data are not getting in from forwarder (Splunk_TA_hadoopops). Is [script://./bin/hadoopmon_ps.sh] enabled?&lt;/P&gt;

&lt;P&gt;Edit:&lt;BR /&gt;
As pierre4splunk replied below, core-site.xml and mapred-site.xml need to be monitored to create hdfs and mapred lookup, respectively. maxcpu lookup depends on results from hadoopmon_cpu.sh. Might be worth double-checking.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2013 20:55:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55446#M3208</guid>
      <dc:creator>lyuanlai_splunk</dc:creator>
      <dc:date>2013-06-06T20:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: Help on HadoopOps</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55447#M3209</link>
      <description>&lt;P&gt;These lookups are populated when the app is first initialized, and then updated once per day thereafter.  Are you seeing this after a new deployment or upgrade?  If so, this message could show up if some data is not yet available.  The message persists until the next scheduled search updates the lookup correctly.  &lt;/P&gt;

&lt;P&gt;You can run these scheduled searches manually, both to troubleshoot and to populate the lookup directly.  I've pasted them here for reference (expanded from saved searches and macros):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=hadoopmon_os source="cpu" | stats max(CPU) as maxcpu by host | eval maxcpu = maxcpu + 1 | outputlookup hadoop_host2maxcpu

index=hadoopmon_configs source=*mapred-site.xml | kv hadoop_conf_xml | stats count last(mapred_job_tracker) as mapred_instance by host | table host mapred_instance | output lookup hadoop_host2mapred

index=hadoopmon_configs source=*core-site.xml | kv hadoop_conf_xml | stats count last(fs_default_name) as hdfs_instance by host | rex field=hdfs_instance mode=sed "s,hdfs://,," | table host hdfs_instance | output lookup hadoop_host2hdfs
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The lookup behavior is unnecessarily sucky here, and the error message isn't very helpful here.  We will address both issues in a future release for sure.  Thanks for reaching out!&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2013 03:24:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55447#M3209</guid>
      <dc:creator>pierre4splunk</dc:creator>
      <dc:date>2013-06-07T03:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help on HadoopOps</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55448#M3210</link>
      <description>&lt;P&gt;Is that because am working on CDH4?? compatibility problem??&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2013 10:50:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55448#M3210</guid>
      <dc:creator>ncbshiva</dc:creator>
      <dc:date>2013-06-07T10:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Help on HadoopOps</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55449#M3211</link>
      <description>&lt;P&gt;Likely. Hadoopops does not support yarn/MR2 yet.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2013 04:21:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55449#M3211</guid>
      <dc:creator>lyuanlai_splunk</dc:creator>
      <dc:date>2013-06-11T04:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: Help on HadoopOps</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55450#M3212</link>
      <description>&lt;P&gt;actually, most CDH4 deployments do not use YARN/MR2 yet.  and many customers are using HadoopOps on CDH4.  see the discussion here:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://splunk-base.splunk.com/answers/77676/hadoop-ops-app-and-cloudera"&gt;http://splunk-base.splunk.com/answers/77676/hadoop-ops-app-and-cloudera&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2013 20:50:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Help-on-HadoopOps/m-p/55450#M3212</guid>
      <dc:creator>pierre4splunk</dc:creator>
      <dc:date>2013-06-11T20:50:50Z</dc:date>
    </item>
  </channel>
</rss>

