<?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 How to identify redundant reload tasks in Archived Groups</title>
    <link>https://community.qlik.com/t5/Archived-Groups/How-to-identify-redundant-reload-tasks/m-p/1675865#M3106</link>
    <description>&lt;P&gt;I am seeing multiple reload tasks for the same associated resource in the QMC scheduled for the same time.&amp;nbsp; If multiple apps use the same associated resource, is it safe to simply remove the extra reload tasks?&amp;nbsp; We are experiencing system load issues early in the morning and I suspect it is because the users have simply created redundant reload tasks.&amp;nbsp; Just trying to find a way to identify redundant (unnecessary) reload tasks.&amp;nbsp; Thanks.&lt;/P&gt;</description>
    <pubDate>Tue, 22 Jul 2025 18:19:11 GMT</pubDate>
    <dc:creator>snookersanders</dc:creator>
    <dc:date>2025-07-22T18:19:11Z</dc:date>
    <item>
      <title>How to identify redundant reload tasks</title>
      <link>https://community.qlik.com/t5/Archived-Groups/How-to-identify-redundant-reload-tasks/m-p/1675865#M3106</link>
      <description>&lt;P&gt;I am seeing multiple reload tasks for the same associated resource in the QMC scheduled for the same time.&amp;nbsp; If multiple apps use the same associated resource, is it safe to simply remove the extra reload tasks?&amp;nbsp; We are experiencing system load issues early in the morning and I suspect it is because the users have simply created redundant reload tasks.&amp;nbsp; Just trying to find a way to identify redundant (unnecessary) reload tasks.&amp;nbsp; Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 18:19:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/How-to-identify-redundant-reload-tasks/m-p/1675865#M3106</guid>
      <dc:creator>snookersanders</dc:creator>
      <dc:date>2025-07-22T18:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify redundant reload tasks</title>
      <link>https://community.qlik.com/t5/Archived-Groups/How-to-identify-redundant-reload-tasks/m-p/1678622#M3107</link>
      <description>&lt;P&gt;A few thoughts:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Redundant tasks will not cause the app to reload at the same time. If two tasks try to reload the same app, the task which executes after the first begins (but has not completed) will receive an error like so:&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="already_reloading.png" style="width: 396px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/28970iDF1EEEEE90D73EB1/image-size/large?v=v2&amp;amp;px=999" role="button" title="already_reloading.png" alt="already_reloading.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Now redundant reload tasks are absolutely confusing from an administrative standpoint.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;As for determining which apps have greater than 1 reload task here's a quick and dirty script using Qlik-CLI:&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;Connect-Qlik
$tasks = Get-QlikReloadTask -full
$tasks.app.id | Group-Object | Sort-Object Count -Descending | Select-Object Name, Count | Group-Object {$_.Count -gt '1'}
&amp;lt;# Example outout:
Count Name                      Group                                                                                                                                                                                                                            
----- ----                      -----                                                                                                                                                                                                                            
    2 True                      {@{Name=de351196-3621-4e75-8a95-00d18ed5d4ea; Count=4}, @{Name=53c667f8-b6b9-431e-991e-fd9f9bf5d38f; Count=2}}                                                                                                                   
   78 False                     {@{Name=4561bb3a-5490-4dd6-b545-be6e1a647af5; Count=1}, @{Name=0f3eba7f-39f9-493c-87b4-518575a41376; Count=1}, @{Name=48117492-7d12-43f3-b3f6-3a21631a736f; Count=1}
#&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this example, app de351196-3621-4e75-8a95-00d18ed5d4ea has 4 reload tasks and&amp;nbsp;53c667f8-b6b9-431e-991e-fd9f9bf5d38f has 2.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2020 16:07:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/How-to-identify-redundant-reload-tasks/m-p/1678622#M3107</guid>
      <dc:creator>Levi_Turner</dc:creator>
      <dc:date>2020-02-24T16:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify redundant reload tasks</title>
      <link>https://community.qlik.com/t5/Archived-Groups/How-to-identify-redundant-reload-tasks/m-p/1678707#M3108</link>
      <description>&lt;P&gt;Thanks very much.&amp;nbsp; Wonderful level of detail and a tool to allow me to research further.&amp;nbsp; I have never used CLI, but will get right on that learning curve.&amp;nbsp; thanks again.&amp;nbsp; kls&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2020 18:22:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/How-to-identify-redundant-reload-tasks/m-p/1678707#M3108</guid>
      <dc:creator>snookersanders</dc:creator>
      <dc:date>2020-02-24T18:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify redundant reload tasks</title>
      <link>https://community.qlik.com/t5/Archived-Groups/How-to-identify-redundant-reload-tasks/m-p/1679218#M3109</link>
      <description>&lt;P&gt;The Operations Monitor and Reloads Monitor apps also report Task Name | App Name which could be used to count Apps with &amp;gt;1 associated task...&lt;/P&gt;
&lt;P&gt;But if the CLI is working, run with it. Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/47469"&gt;@Levi_Turner&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2020 21:42:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/How-to-identify-redundant-reload-tasks/m-p/1679218#M3109</guid>
      <dc:creator>Tyler_Waterfall</dc:creator>
      <dc:date>2020-02-25T21:42:04Z</dc:date>
    </item>
  </channel>
</rss>

