<?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 CSV default limit issue in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/help-on-CSV-default-limit-issue/m-p/495460#M99945</link>
    <description>&lt;P&gt;I have an host list in host.csv and an host list in toto.csv&lt;BR /&gt;
From the host.csv list, I need to retrieve the existing datas for the same host in toto.csv&lt;BR /&gt;
It was working perfectly but since the toto.csv has more than 10000 events it doesnt works&lt;BR /&gt;
I can see any other explanations than this&lt;/P&gt;</description>
    <pubDate>Fri, 24 Jan 2020 10:14:35 GMT</pubDate>
    <dc:creator>jip31</dc:creator>
    <dc:date>2020-01-24T10:14:35Z</dc:date>
    <item>
      <title>help on CSV default limit issue</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/help-on-CSV-default-limit-issue/m-p/495458#M99943</link>
      <description>&lt;P&gt;hi&lt;/P&gt;

&lt;P&gt;If I launch the files separately, I have results&lt;BR /&gt;
But since a few days, I am unable to cross the data between the 2 CSV files below&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup host.csv 
| lookup toto.csv "Computer" as host 
| stats count as "Number of machines" by flag
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;When I have a look to toto.csv, I have 98000 events&lt;BR /&gt;
Is anybody can confirm me that the issue comes from the CSV default limit which is 10000 events?&lt;BR /&gt;
If yes, what I have to do for having a workaround to this issue?&lt;BR /&gt;
thanks&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 07:44:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/help-on-CSV-default-limit-issue/m-p/495458#M99943</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2020-01-24T07:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: help on CSV default limit issue</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/help-on-CSV-default-limit-issue/m-p/495459#M99944</link>
      <description>&lt;P&gt;You will only have as many results as there are entries in host.csv.&lt;BR /&gt;
The number of entries in toto.csv will not affect the number of results this query returns.&lt;/P&gt;

&lt;P&gt;What are you trying to do?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 09:02:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/help-on-CSV-default-limit-issue/m-p/495459#M99944</guid>
      <dc:creator>nickhills</dc:creator>
      <dc:date>2020-01-24T09:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: help on CSV default limit issue</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/help-on-CSV-default-limit-issue/m-p/495460#M99945</link>
      <description>&lt;P&gt;I have an host list in host.csv and an host list in toto.csv&lt;BR /&gt;
From the host.csv list, I need to retrieve the existing datas for the same host in toto.csv&lt;BR /&gt;
It was working perfectly but since the toto.csv has more than 10000 events it doesnt works&lt;BR /&gt;
I can see any other explanations than this&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 10:14:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/help-on-CSV-default-limit-issue/m-p/495460#M99945</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2020-01-24T10:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: help on CSV default limit issue</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/help-on-CSV-default-limit-issue/m-p/495461#M99946</link>
      <description>&lt;P&gt;lookup (files) with very large row counts are not the recommended approach.&lt;BR /&gt;
However - this is for performance reasons, and not because they will not work.&lt;BR /&gt;
The recommended approach is to use a KV store if your lookup data is more than 10,000 entries.&lt;/P&gt;

&lt;P&gt;With that said, based on what you have said so far, that does not appear to be your problem.&lt;/P&gt;

&lt;P&gt;Its far more likely that you have some bad data in your lookup file, a misquoted or extra comma, or extra quotation marks are top candidates - something which becomes troublesome to spot with nearly 100,000 entries.&lt;/P&gt;

&lt;P&gt;If I was trying to find the problem, I would split the lookup into 10 smaller files (cat/head/tail whaetver your comfortable with) and test each small file 1 at a time. Manually run a query to test for the last now in each lookup - when you find a file which no longer works you can start narrowing down the problem.&lt;/P&gt;

&lt;P&gt;If performamce is something you care about - i would also look at moving the lookup to KV - during which, the bad data in the existing file will likely become self evident.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 10:27:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/help-on-CSV-default-limit-issue/m-p/495461#M99946</guid>
      <dc:creator>nickhills</dc:creator>
      <dc:date>2020-01-24T10:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: help on CSV default limit issue</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/help-on-CSV-default-limit-issue/m-p/495462#M99947</link>
      <description>&lt;P&gt;It seems to be a right issue on the file when the push in prod has been done...&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 15:57:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/help-on-CSV-default-limit-issue/m-p/495462#M99947</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2020-01-24T15:57:41Z</dc:date>
    </item>
  </channel>
</rss>

