<?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: Search in lookup with subsearch- bug ? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743240#M241063</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/247047"&gt;@Treize&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the&amp;nbsp;Match type&amp;nbsp;box you would do CIDR(fieldName) where fieldName is the name of the field in your lookup which contains the CIDR values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Apr 2025 11:09:59 GMT</pubDate>
    <dc:creator>livehybrid</dc:creator>
    <dc:date>2025-04-02T11:09:59Z</dc:date>
    <item>
      <title>Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743211#M241047</link>
      <description>&lt;P&gt;Hi, there,&lt;/P&gt;&lt;P&gt;I'm simplifying the context:&lt;BR /&gt;We've had a perfectly working correlation rule for several years now, and for the past 2 days it hasn't been working properly.&lt;/P&gt;&lt;P&gt;The command has to list IPs and then check if these IPs are not in a first lookup and then in a second lookup. If the IPs are not in either lookup, an alert is triggered. The IPs are then added to the second lookup, so that they can be ignored for future searches.&lt;/P&gt;&lt;P&gt;It looks like this:&lt;BR /&gt;&amp;lt;my search&amp;gt;&lt;BR /&gt;| dedup ip&lt;BR /&gt;| search NOT [ | inputlookup 1.csv ]&lt;BR /&gt;| search NOT [ | inputlookup 2.csv ]&lt;BR /&gt;| fields ip&lt;BR /&gt;| outputlookup append=true override_if_empty=false 2.csv&lt;/P&gt;&lt;P&gt;The lookups are both identical:&lt;BR /&gt;IP&lt;BR /&gt;-------&lt;BR /&gt;1.1.1.1&lt;BR /&gt;2.2.2.2&lt;BR /&gt;etc&lt;/P&gt;&lt;P&gt;The first lookup has 1000 lines&lt;BR /&gt;The second lookup has 55000 lines&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Everything was working fine, but now we have IPs that are triggering alerts despite being in the second lookup.&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Apr 2025 06:39:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743211#M241047</guid>
      <dc:creator>Treize</dc:creator>
      <dc:date>2025-04-02T06:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743212#M241048</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/247047"&gt;@Treize&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;The issue is likely due to subsearch limitations. Subsearches have default limits on the number of results (10,000) and runtime, and your second lookup (55,000 lines) exceeds the default output limit. This means the subsearch [ | inputlookup 2.csv ] might only be returning the first 10,000 IPs, causing the outer search to incorrectly identify IPs beyond that limit as "not found".&lt;/P&gt;&lt;P&gt;Use the lookup command instead, which is more efficient and avoids these limits.&lt;/P&gt;&lt;PRE&gt;| dedup ip
| lookup 1.csv IP AS ip OUTPUT IP AS found_in_1
| where isnull(found_in_1)
| lookup 2.csv IP AS ip OUTPUT IP AS found_in_2
| where isnull(found_in_2)
| fields ip
| outputlookup append=true override_if_empty=false 2.csv&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This search first finds unique IPs, then uses lookup to check against 1.csv. It keeps only the IPs &lt;EM&gt;not&lt;/EM&gt; found (where isnull(found_in_1)). It then repeats the process for 2.csv. Finally, it outputs the remaining IPs (those not found in either lookup) to 2.csv.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Quick Tip:&lt;/STRONG&gt; Double-check that the IP column in your lookup files doesn't contain leading/trailing whitespace&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Search/Aboutsubsearches#Subsearch_performance_considerations" target="_blank" rel="noopener"&gt;https://docs.splunk.com/Documentation/Splunk/latest/Search/Aboutsubsearches#Subsearch_performance_considerations&lt;/A&gt;&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt; &lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt; If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding kudos to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Apr 2025 06:49:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743212#M241048</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-04-02T06:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743213#M241049</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/247047"&gt;@Treize&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I don't know why your lookup doesn't correctly run, how many lines there are in your lookups?&lt;/P&gt;&lt;P&gt;maybe you supered the limit of 10,000 rows.&lt;/P&gt;&lt;P&gt;Then, did you changed the name of the "ip" field in the main search or in the lookups?&lt;/P&gt;&lt;P&gt;anyway, your search isn't optimized: it should be better to insert the two subsearches in the main search and declare the field to use in the search using the field command:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;my search&amp;gt; NOT ([ | inputlookup 1.csv | fields ip ] OR [ | inputlookup 2.csv | fields ip ]
| dedup ip
| fields ip
| outputlookup append=true override_if_empty=false 2.csv&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 06:54:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743213#M241049</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2025-04-02T06:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743215#M241050</link>
      <description>&lt;P&gt;Your subsearch only returns a limited number of rows (possibly only 10000 not the 55000 you were expecting).&lt;/P&gt;&lt;P&gt;As an experiment, I tried this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults count=50001
| streamstats count as row
| outputlookup large.csv&lt;/LI-CODE&gt;&lt;P&gt;Followed by&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults count=50010
| streamstats count as row
| search NOT 
    [| inputlookup large.csv]&lt;/LI-CODE&gt;&lt;P&gt;I still get 40010 rows not the 9 that I "should" get&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ITWhisperer_0-1743576993342.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38419i57838685C66410A2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ITWhisperer_0-1743576993342.png" alt="ITWhisperer_0-1743576993342.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 06:58:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743215#M241050</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-04-02T06:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743218#M241052</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;Hello and thank you for your suggestion&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;It works pretty well indeed! &lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;The only problem, and it's my fault, I forgot to specify that the 1.csv contains CIDRs and not simple IPs... &lt;/SPAN&gt;&lt;SPAN class=""&gt;Any ideas? &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;I'd never have thought of the limits of subsearch. &lt;/SPAN&gt;&lt;SPAN class=""&gt;How has it worked all these years when we exceeded 10,000 lines years ago?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 07:14:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743218#M241052</guid>
      <dc:creator>Treize</dc:creator>
      <dc:date>2025-04-02T07:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743219#M241053</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;Thanks, I'll keep the optimization in my mind and implement it as soon as my problem is solved.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 07:18:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743219#M241053</guid>
      <dc:creator>Treize</dc:creator>
      <dc:date>2025-04-02T07:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743222#M241054</link>
      <description>&lt;P&gt;You could break up the csv so that you process it in chunks of 10000 events&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults count=50010
| streamstats count as row
| search NOT 
    [| inputlookup large.csv
    | head 10000]
| search NOT 
    [| inputlookup large.csv
    | head 20000
    | tail 10000]
| search NOT 
    [| inputlookup large.csv
    | head 30000
    | tail 10000]
| search NOT 
    [| inputlookup large.csv
    | head 40000
    | tail 10000]
| search NOT 
    [| inputlookup large.csv
    | head 50000
    | tail 10000]&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ITWhisperer_0-1743579486421.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38420i9B4EECD923A8859A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ITWhisperer_0-1743579486421.png" alt="ITWhisperer_0-1743579486421.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 07:38:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743222#M241054</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-04-02T07:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743224#M241055</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/247047"&gt;@Treize&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your "ip" field in the lookup is a CIDR then configure it as an lookup definition (rather than referencing it as &amp;lt;lookup1&amp;gt;.csv and then under Advanced Options set the&amp;nbsp;Match type&amp;nbsp;to CIDR(ip) as below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="livehybrid_0-1743580407202.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38421i5BECE9090077C09E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="livehybrid_0-1743580407202.png" alt="livehybrid_0-1743580407202.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt; &lt;STRONG&gt;Did this answer help you? If so, please consider&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding kudos to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issu&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 07:53:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743224#M241055</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-04-02T07:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743230#M241057</link>
      <description>&lt;P&gt;The lookup has already been defined. The variable is not really “ip” so in the definition should we put CIDR(ip) because it's an IP or CIDR() to define the variable it should take into account? In both cases, this solution doesn't work. It can't find the IPs in the lookup's CIDRs...&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 09:00:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743230#M241057</guid>
      <dc:creator>Treize</dc:creator>
      <dc:date>2025-04-02T09:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743231#M241058</link>
      <description>&lt;P&gt;That solution isn't perfect but it's a good tips, thanks dude&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 09:02:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743231#M241058</guid>
      <dc:creator>Treize</dc:creator>
      <dc:date>2025-04-02T09:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743235#M241059</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;In the meantime, I've come up with a simple idea: a subsearch for the lookup with 1000 lines and a simple "| lookup" command for the lookup with 50,000 lines.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 09:15:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743235#M241059</guid>
      <dc:creator>Treize</dc:creator>
      <dc:date>2025-04-02T09:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743236#M241060</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/247047"&gt;@Treize&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;it could run, but you should add another field to use for the check.&lt;/P&gt;&lt;P&gt;But, having the issue of so many rows, why you don't use a summary index, outting it in the main search so you don't have limits?&lt;/P&gt;&lt;P&gt;something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(&amp;lt;my search&amp;gt;) OR (index=new_summary_index)
| eval ip=coalesce(ip,IP)
| stats 
     values(index) AS index
     dc(index) AS index_count
     BY ip
| where index_count=1 AND index=&amp;lt;your_index&amp;gt;
| fields ip
| outputlookup append=true override_if_empty=false 2.csv&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 09:22:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743236#M241060</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2025-04-02T09:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743238#M241061</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;I don't understand why a summary index would be better?&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;We use 2 lookups:&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;- 1st because it comes from a third party&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;- 2nd because we need to increment it after treating this IP as an alert&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 10:02:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743238#M241061</guid>
      <dc:creator>Treize</dc:creator>
      <dc:date>2025-04-02T10:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743240#M241063</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/247047"&gt;@Treize&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the&amp;nbsp;Match type&amp;nbsp;box you would do CIDR(fieldName) where fieldName is the name of the field in your lookup which contains the CIDR values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 11:09:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743240#M241063</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-04-02T11:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: Search in lookup with subsearch- bug ?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743255#M241065</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/247047"&gt;@Treize&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;because summary index in a main search hasn't limits in the number of results.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 14:23:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-in-lookup-with-subsearch-bug/m-p/743255#M241065</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2025-04-02T14:23:34Z</dc:date>
    </item>
  </channel>
</rss>

