<?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: Can we run parallel writes in lookup file? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Can-we-run-parallel-writes-in-lookup-file/m-p/696013#M236590</link>
    <description>&lt;P&gt;The lookup file is written by the search head in one go.&amp;nbsp; There is no parallelism.&lt;/P&gt;</description>
    <pubDate>Mon, 12 Aug 2024 14:35:12 GMT</pubDate>
    <dc:creator>richgalloway</dc:creator>
    <dc:date>2024-08-12T14:35:12Z</dc:date>
    <item>
      <title>Can we run parallel writes in lookup file?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-we-run-parallel-writes-in-lookup-file/m-p/696000#M236588</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;
&lt;P&gt;I have a lookup file which stores data of hosts across multiple indexes.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have reports which fetch information of hosts from each index and updates the records in lookup file.&lt;/P&gt;
&lt;P&gt;Can I run parallel search for hosts related to each index and thus parallelly update the same lookup file?&lt;/P&gt;
&lt;P&gt;Or is there any risk of performance, consistency of data?&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;Taruchit&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2024 14:08:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-we-run-parallel-writes-in-lookup-file/m-p/696000#M236588</guid>
      <dc:creator>Taruchit</dc:creator>
      <dc:date>2024-08-12T14:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: Can we run parallel writes in lookup file?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-we-run-parallel-writes-in-lookup-file/m-p/696013#M236590</link>
      <description>&lt;P&gt;The lookup file is written by the search head in one go.&amp;nbsp; There is no parallelism.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2024 14:35:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-we-run-parallel-writes-in-lookup-file/m-p/696013#M236590</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2024-08-12T14:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: Can we run parallel writes in lookup file?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-we-run-parallel-writes-in-lookup-file/m-p/696020#M236591</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223102"&gt;@Taruchit&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;in addition, you could use a lookup with kv-store so you'll have a key that guarantees the unicity of data.&lt;/P&gt;&lt;P&gt;Only one question: you're trying to use Splunk as a database and Splunk isn't a database, are you sure that you're using the best solution for your requirements?&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2024 15:21:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-we-run-parallel-writes-in-lookup-file/m-p/696020#M236591</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-08-12T15:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: Can we run parallel writes in lookup file?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-we-run-parallel-writes-in-lookup-file/m-p/696031#M236593</link>
      <description>&lt;P&gt;If you need parallelism then you must use kvstore based lookups not CSV based.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2024 15:49:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-we-run-parallel-writes-in-lookup-file/m-p/696031#M236593</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2024-08-12T15:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: Can we run parallel writes in lookup file?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-we-run-parallel-writes-in-lookup-file/m-p/696032#M236594</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Thank you for sharing your inputs.&lt;/P&gt;&lt;P&gt;I have a report which fetches last seen timestamp of hosts across multiple indexes.&lt;/P&gt;&lt;P&gt;I store the results in lookup file, and then use the lookup file as a bounded static source from where we can read the results in other reports and dashboards as required.&lt;/P&gt;&lt;P&gt;It helps me with two scenarios: -&lt;/P&gt;&lt;P&gt;1. If the report that generates results fails because of some reason, and as the result the downstream dashboards and reports that consume the data will also get impacted. And I will need to wait for Operations team to help with the issue or wait until the report runs again and hope that it runs successfully in the next execution.&lt;/P&gt;&lt;P&gt;2. Since I am referring a lookup file, the fetching and searching of records in SPLs written for reports and dashboards get faster.&lt;/P&gt;&lt;P&gt;Please share if you have any views to consider and improve.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2024 15:51:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-we-run-parallel-writes-in-lookup-file/m-p/696032#M236594</guid>
      <dc:creator>Taruchit</dc:creator>
      <dc:date>2024-08-12T15:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Can we run parallel writes in lookup file?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-we-run-parallel-writes-in-lookup-file/m-p/696039#M236595</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223102"&gt;@Taruchit&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;let us know if we can help you more, or, please, accept one answer for the other people of Community.&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated by all the contributors &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2024 16:24:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-we-run-parallel-writes-in-lookup-file/m-p/696039#M236595</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-08-12T16:24:28Z</dc:date>
    </item>
  </channel>
</rss>

