<?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: Lookup Search is taking over an hour to complete in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381690#M46451</link>
    <description>&lt;P&gt;This add on which works as a lookup is installed on indexer..will local=true work here&lt;/P&gt;</description>
    <pubDate>Wed, 02 Jan 2019 19:51:46 GMT</pubDate>
    <dc:creator>ramprakash</dc:creator>
    <dc:date>2019-01-02T19:51:46Z</dc:date>
    <item>
      <title>Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381678#M46439</link>
      <description>&lt;P&gt;index=iso_wa sourcetype=iso_wa_pages | where isnotnull(nv_usr_agt) | table nv_usr_agt | rename nv_usr_agt as http_user_agent | dedup http_user_agent | lookup browscap_lookup_express http_user_agent | inputlookup http_user_agent append=true | dedup http_user_agent | outputlookup http_user_agent&lt;/P&gt;

&lt;P&gt;Can anyone help me in understanding why it is taking long time to complete and how can i optimize ?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 22:32:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381678#M46439</guid>
      <dc:creator>ramprakash</dc:creator>
      <dc:date>2020-09-29T22:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381679#M46440</link>
      <description>&lt;P&gt;@ramprakash &lt;/P&gt;

&lt;P&gt;Can you please try initial search like &lt;CODE&gt;index=iso_wa sourcetype=iso_wa_pages nv_usr_agt=*&lt;/CODE&gt; instead of &lt;CODE&gt;index=iso_wa sourcetype=iso_wa_pages | where isnotnull(nv_usr_agt)&lt;/CODE&gt; ?&lt;/P&gt;</description>
      <pubDate>Thu, 27 Dec 2018 11:59:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381679#M46440</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2018-12-27T11:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381680#M46441</link>
      <description>&lt;P&gt;Hi ramprakash,&lt;BR /&gt;
I don't understand why you used the lookup command, you don't use any additional field!&lt;BR /&gt;
Anyway, try something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=iso_wa sourcetype=iso_wa_pages nv_usr_agt=* 
| fields nv_usr_agt 
| rename nv_usr_agt as http_user_agent 
| append [ | inputlookup http_user_agent append=true | fields http_user_agent ]
| dedup http_user_agent 
| outputlookup http_user_agent
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Remember that using a subsearch, there's the limit of 50,000 results.&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 27 Dec 2018 15:16:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381680#M46441</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2018-12-27T15:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381681#M46442</link>
      <description>&lt;P&gt;In addition to kamlesh_vaghela's good comment,&lt;BR /&gt;
Replace &lt;CODE&gt;table&lt;/CODE&gt; with &lt;CODE&gt;fields&lt;/CODE&gt;.  The &lt;CODE&gt;fields&lt;/CODE&gt; command is processed by indexers whereas &lt;CODE&gt;table&lt;/CODE&gt; is performed by the search head. &lt;BR /&gt;
Replace &lt;CODE&gt;dedup http_user_agent&lt;/CODE&gt; with &lt;CODE&gt;stats count by http_user_agent | fields - count&lt;/CODE&gt;.&lt;BR /&gt;
How big is the iso_wa index?  A large index takes a long time to search and the only way around that is to distribute the index across more indexers.&lt;BR /&gt;
How big is the browsecap_lookup_express lookup?  Large lookup files can take a long time to ship from search head to indexers.  If this is the case, try &lt;CODE&gt;lookup local=true ...&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 22:36:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381681#M46442</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-09-29T22:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381682#M46443</link>
      <description>&lt;P&gt;Thanks for the Suggestions. I am out of office for Holidays. Requesting you to please continue following this post. I will try once i get into office.&lt;/P&gt;

&lt;P&gt;Also could you please let me know if it is needed to update browscap.csv file or query only?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Dec 2018 14:04:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381682#M46443</guid>
      <dc:creator>ramprakash</dc:creator>
      <dc:date>2018-12-28T14:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381683#M46444</link>
      <description>&lt;P&gt;Thanks for the Suggestions. I am out of office for Holidays. Requesting you to please continue following this post. I will try once i get into office.&lt;/P&gt;

&lt;P&gt;Also could you please let me know if it is needed to update browscap.csv file or query only?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Dec 2018 14:04:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381683#M46444</guid>
      <dc:creator>ramprakash</dc:creator>
      <dc:date>2018-12-28T14:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381684#M46445</link>
      <description>&lt;P&gt;Thanks for the Suggestions. I am out of office for Holidays. Requesting you to please continue following this post. I will try once i get into office.&lt;/P&gt;

&lt;P&gt;Also could you please let me know if it is needed to update browscap.csv file or query only?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Dec 2018 14:04:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381684#M46445</guid>
      <dc:creator>ramprakash</dc:creator>
      <dc:date>2018-12-28T14:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381685#M46446</link>
      <description>&lt;P&gt;I see no reason to change the CSV file now.&lt;/P&gt;</description>
      <pubDate>Mon, 31 Dec 2018 13:33:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381685#M46446</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2018-12-31T13:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381686#M46447</link>
      <description>&lt;P&gt;Hi Richgalloway...I have modified the query and the issue still persists. It is checking almost 50k events and when i checked the Search Job Inspector, I found that lookup command is taking 99% of time. &lt;/P&gt;</description>
      <pubDate>Wed, 02 Jan 2019 10:51:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381686#M46447</guid>
      <dc:creator>ramprakash</dc:creator>
      <dc:date>2019-01-02T10:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381687#M46448</link>
      <description>&lt;P&gt;Hi Cusello...I have checked the issue and the events are more than 50k&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jan 2019 10:54:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381687#M46448</guid>
      <dc:creator>ramprakash</dc:creator>
      <dc:date>2019-01-02T10:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381688#M46449</link>
      <description>&lt;P&gt;How large is the lookup file on disk?  What speed is your network between search heads and indexers?&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jan 2019 13:43:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381688#M46449</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2019-01-02T13:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381689#M46450</link>
      <description>&lt;P&gt;Hi..How can i check the file, since it is a external lookup...actually i have installed Http_user_agent add on which consists dynamic lookup&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 22:33:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381689#M46450</guid>
      <dc:creator>ramprakash</dc:creator>
      <dc:date>2020-09-29T22:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381690#M46451</link>
      <description>&lt;P&gt;This add on which works as a lookup is installed on indexer..will local=true work here&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jan 2019 19:51:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381690#M46451</guid>
      <dc:creator>ramprakash</dc:creator>
      <dc:date>2019-01-02T19:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381691#M46452</link>
      <description>&lt;P&gt;&lt;CODE&gt;local=true&lt;/CODE&gt; will work if the lookup is installed on the search head.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jan 2019 13:41:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381691#M46452</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2019-01-04T13:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381692#M46453</link>
      <description>&lt;P&gt;I am not getting clear idea where this lookup  is actually installed. How can i verify this thing through search head as i don't have admin access to check config files of Indexers and Search head.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jan 2019 14:07:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381692#M46453</guid>
      <dc:creator>ramprakash</dc:creator>
      <dc:date>2019-01-04T14:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup Search is taking over an hour to complete</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381693#M46454</link>
      <description>&lt;P&gt;Go to Settings-&amp;gt;Lookups-&amp;gt;Lookup Files.  If you can't see that option then you'll need to get an admin to help.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 13:52:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-Search-is-taking-over-an-hour-to-complete/m-p/381693#M46454</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2019-01-07T13:52:00Z</dc:date>
    </item>
  </channel>
</rss>

