<?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: Best Way to Maintain Live Order Status Without Expensive Searches? in Knowledge Management</title>
    <link>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753074#M10490</link>
    <description>&lt;P&gt;Adding to what&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;already said - what do you mean by "live" dashboards? If you by any chance mean that the dashboard is running realtime searches... that's a bad idea.&lt;/P&gt;</description>
    <pubDate>Sun, 14 Sep 2025 20:07:14 GMT</pubDate>
    <dc:creator>PickleRick</dc:creator>
    <dc:date>2025-09-14T20:07:14Z</dc:date>
    <item>
      <title>Best Way to Maintain Live Order Status Without Expensive Searches?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753059#M10487</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I'm new to Splunk and have been thrown in at the deep end, so apologies if this is the wrong place or a basic question.&lt;/P&gt;&lt;P&gt;We have a dashboard that tracks the status of orders (Started, Completed, Cancelled, etc.) coming from different source types and highlights red if it hasn't updated in some time. Right now, it runs multiple heavy searches with a lot of joins on OrderID to show if an order is running late. Since this dashboard is live and viewed by many people, performance is a concern.&lt;/P&gt;&lt;P&gt;What I'm looking for is a way to maintain a kind of “live” or frequently updated table (keyed by OrderID) that stores the latest status values (Started, Completed, Cancelled, etc.) and maybe a calculated (on-time, late etc,) so that dashboards or other searches don’t have to recompute everything each time.&lt;/P&gt;&lt;P&gt;Is there a recommended approach for this in Splunk? Summary indexing, KV store, or something else?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;Note: I'm using Splunk Enterprise 8.2&lt;/P&gt;</description>
      <pubDate>Sun, 14 Sep 2025 01:36:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753059#M10487</guid>
      <dc:creator>martinb</dc:creator>
      <dc:date>2025-09-14T01:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Best Way to Maintain Live Order Status Without Expensive Searches?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753060#M10488</link>
      <description>&lt;P&gt;The first thing to do is probably optimise your searches so that they don't use joins - these are heavy as you have already pointed out.&lt;/P&gt;&lt;P&gt;Next, would depend on the tolerances you are prepared to deal with, for example, if you use a summary index, how out of date are you prepared for it to be,&amp;nbsp; e.g. if it was updated every 10 minutes, would that satisfy your users? Same goes for KV Store. (You would have a scheduled report that updated either the KV store or the summary index.)&lt;/P&gt;</description>
      <pubDate>Sun, 14 Sep 2025 07:12:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753060#M10488</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-09-14T07:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Best Way to Maintain Live Order Status Without Expensive Searches?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753062#M10489</link>
      <description>&lt;P&gt;Hi at all,&lt;/P&gt;&lt;P&gt;At first, as &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;said, try to optimize your search.&lt;/P&gt;&lt;P&gt;In addition, you could use a summary index (&lt;A href="https://docs.splunk.com/Documentation/Splunk/9.4.0/Knowledge/Aboutsummaryindexing" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/9.4.0/Knowledge/Aboutsummaryindexing&lt;/A&gt;)&amp;nbsp;or an accelerated custom Data Model (&lt;A href="https://docs.splunk.com/Documentation/Splunk/9.4.2/Knowledge/Acceleratedatamodels" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/9.4.2/Knowledge/Acceleratedatamodels&lt;/A&gt;) containing the data you need.&lt;/P&gt;&lt;P&gt;I had a similar situation some years ago: a dashboard used by many people with 12 searches in Real Time, some of them with sobsearches: this dashboard was killing the system.&lt;/P&gt;&lt;P&gt;I solved scheduling 12 reports every 5 minutes and displaying the results of these reports in the dashboard: in this way the 12 reports were executed only one time every 5 minutes instead in real time for each user, for more infos see at &lt;A href="https://docs.splunk.com/Documentation/Splunk/9.4.1/Knowledge/Manageacceleratedsearchsummaries" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/9.4.1/Knowledge/Manageacceleratedsearchsummaries&lt;/A&gt; .&lt;/P&gt;&lt;P&gt;In addition you could accelerate these reports if possible (there are some limitations to report accelerations:&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/Splunk/9.4.2/Report/Acceleratereports" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/9.4.2/Report/Acceleratereports&lt;/A&gt;&lt;/P&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>Sun, 14 Sep 2025 07:42:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753062#M10489</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2025-09-14T07:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Best Way to Maintain Live Order Status Without Expensive Searches?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753074#M10490</link>
      <description>&lt;P&gt;Adding to what&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;already said - what do you mean by "live" dashboards? If you by any chance mean that the dashboard is running realtime searches... that's a bad idea.&lt;/P&gt;</description>
      <pubDate>Sun, 14 Sep 2025 20:07:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753074#M10490</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-09-14T20:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Best Way to Maintain Live Order Status Without Expensive Searches?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753075#M10491</link>
      <description>&lt;P&gt;By Live I meant more that the dashboard is used for monitoring, so needs up to date information on the order status, if there is a delay of more than around 5 minutes then they require intervention - so running a report every 10 minutes wouldn't work in this instance.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But also yes, they are running searches each time the dashboard is refreshed. I've managed to limit the number of users to only 1 or 2 at this stage, which is why I'm trying to optimize this now rather than letting it become a problem for later.&lt;/P&gt;</description>
      <pubDate>Sun, 14 Sep 2025 21:24:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753075#M10491</guid>
      <dc:creator>martinb</dc:creator>
      <dc:date>2025-09-14T21:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: Best Way to Maintain Live Order Status Without Expensive Searches?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753076#M10492</link>
      <description>&lt;P&gt;Thanks for your reply!&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is the best alternative to using joins?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think I could get away with up to 5 minutes delay, but less is better - as the dashboard is highlighting when orders are delayed so that users can intervene early and find the reason for the delay.&lt;/P&gt;&lt;P&gt;What if I ran a summary index every 5 minutes to only identify the orderID of the orders that are still open, and then running a base search to get the details in the dashboard for the ones that aren't - that way instead of running the search on every order that happened in the last x hours, we only run the search on the ones that aren't finished?&lt;/P&gt;</description>
      <pubDate>Sun, 14 Sep 2025 21:28:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753076#M10492</guid>
      <dc:creator>martinb</dc:creator>
      <dc:date>2025-09-14T21:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Best Way to Maintain Live Order Status Without Expensive Searches?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753085#M10493</link>
      <description>&lt;P&gt;There are many techniques for improving performance. Especially dashboard performance.&lt;/P&gt;&lt;P&gt;Apart from making the searches more efficient (getting rid of joins is almost always a good idea) you can use base searches in your dashboard if you generate several results from the same set of data. And you can do async searching - schedule searches in background and only do loadjob in the dashboard so that each user opening a dashboard doesn't spawn a new search.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Sep 2025 07:36:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753085#M10493</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-09-15T07:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Best Way to Maintain Live Order Status Without Expensive Searches?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753087#M10494</link>
      <description>&lt;P&gt;Adding to a summary index every 5 minutes with the latest state of any previously unclosed orders and any new unclosed orders sounds like a good way to go, however, this is all theoretical as we don't have access to your data or even a glimpse of what you events might look like.&lt;/P&gt;&lt;P&gt;Same applies to removing joins, without an idea of what your events look like, and what your current search queries look like, it is not possible to give a non-theoretical answer as to how you might optimise them, but, in general, the was to remove joins (and other types of subsearches) is to include all relevant sources of data (indexes) in the initial search, and use stats commands (e.g. eventstats, streamstats and stats) to correlate data from the different sources.&lt;/P&gt;&lt;P&gt;If you need further guidance, please share some anonymised events of the different types, representations of your current searches demonstrating how you are correlating the data, and an non-SPL explanation of what the searches are trying to do, then perhaps we might be able to provide even more useful suggestions.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Sep 2025 07:48:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Best-Way-to-Maintain-Live-Order-Status-Without-Expensive/m-p/753087#M10494</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-09-15T07:48:50Z</dc:date>
    </item>
  </channel>
</rss>

