<?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: Task Execution Option in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Task-Execution-Option/m-p/1018515#M1253529</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, that's the answer! "&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;Also note that in QMC the task Timeout value (next to the Retries field) is the maximum allowed duration &lt;/SPAN&gt;&lt;EM style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;for all retries together&lt;/EM&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;."&lt;BR /&gt;&lt;/SPAN&gt;I always thought the timeout value is task reload time, i.e. if it's over a certain minutes then reload. I set the timevalue longer and it worked! I guess I have to use sleep(seconds) together to make the re-try wait. Please correct me if I am wrong. Thanks! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Mar 2016 18:02:59 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-03-18T18:02:59Z</dc:date>
    <item>
      <title>Task Execution Option</title>
      <link>https://community.qlik.com/t5/QlikView/Task-Execution-Option/m-p/1018511#M1253521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I have a task usually runs less than 1 minute. I set the Task Execution Options as 2 and Timeout in minutes as 1. My intention was if the task runs over 1 minute and fails, then run again twice until it completes successfully. However it didn't work out as what I expected, what does this work out? Thanks. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Task-Execution-Option/m-p/1018511#M1253521</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Task Execution Option</title>
      <link>https://community.qlik.com/t5/QlikView/Task-Execution-Option/m-p/1018512#M1253524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Woops, you may have to take into account that loading and starting a task as well as distributing the document, closing down and cleaning up will have a setup cost outside of the actual runtime of the script. Therefor, a single minute (which may not even amount to 60 seconds) may be a bit short.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover, a timeout of 1 minute will effectively kill your task, maybe even before it was halfway though the load script. And how would the second attempt improve on this situation? It will probably fail again after the exact same runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To know exactly how much time a task requires to run until completion, disable all timeouts, let a task run all the way till the end and check the task execution log in QMC or the TaskLog.txt file. The timestamps of the first and the last log entry will give you a good idea of the minimum delay. Then do add a safety margin &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Mar 2016 22:50:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Task-Execution-Option/m-p/1018512#M1253524</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-03-17T22:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Task Execution Option</title>
      <link>https://community.qlik.com/t5/QlikView/Task-Execution-Option/m-p/1018513#M1253526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter, thank you, you had a good point. I set the timeout time to 3 minutes, and the task failed with run time 1 minute 4 sec, but it still didn't re-try, why is that?&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 13:52:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Task-Execution-Option/m-p/1018513#M1253526</guid>
      <dc:creator />
      <dc:date>2016-03-18T13:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Task Execution Option</title>
      <link>https://community.qlik.com/t5/QlikView/Task-Execution-Option/m-p/1018514#M1253528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This 1 minute 4 seconds, is that the script run time? Or is it the total task execution time from the TaskLog?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also note that in QMC the task Timeout value (next to the Retries field) is the maximum allowed duration &lt;EM&gt;for all retries together&lt;/EM&gt;. 3 minutes may be even too short for two runs. Maybe you should set the Timeout value to 5 minutes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 17:02:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Task-Execution-Option/m-p/1018514#M1253528</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-03-18T17:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: Task Execution Option</title>
      <link>https://community.qlik.com/t5/QlikView/Task-Execution-Option/m-p/1018515#M1253529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, that's the answer! "&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;Also note that in QMC the task Timeout value (next to the Retries field) is the maximum allowed duration &lt;/SPAN&gt;&lt;EM style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;for all retries together&lt;/EM&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;."&lt;BR /&gt;&lt;/SPAN&gt;I always thought the timeout value is task reload time, i.e. if it's over a certain minutes then reload. I set the timevalue longer and it worked! I guess I have to use sleep(seconds) together to make the re-try wait. Please correct me if I am wrong. Thanks! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 18:02:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Task-Execution-Option/m-p/1018515#M1253529</guid>
      <dc:creator />
      <dc:date>2016-03-18T18:02:59Z</dc:date>
    </item>
  </channel>
</rss>

