<?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: Server-Task delaying in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987340#M1255867</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How does this queueing work? Will they be executed considering to their start-time and after the first few task-chaines are finished the next one within the queue started although is origin start-time was already for hours or will they be skipped?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Sep 2015 13:51:11 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2015-09-21T13:51:11Z</dc:date>
    <item>
      <title>Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987334#M1255849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;some of my task-chains which runs daily triggered through the qv server (no publisher available) needs to be to delayed on sunday for 5 hours. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this I have created some start-qvw's which check the weekday and delay it then - the weekday checking worked without a problem but the delaying from following-tasks is only 60 minutes (3 task-chaines) or 90 minutes (2 task-chaines).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there any timeout-settings or could it be that there are then too many parallel-tasks (how many are possible within the server - two?) because of this waiting some of the task-chains are now overlapping eachother? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could it be handled? Especially if I don't want to use solely windows-task triggered macro-routines (which I have used previously).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the routine - but I think they isn't the issue:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if num(weekday(today())) = 6 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // hours * minutes * seconds * 1000 (for milliseconds)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sleep 5 * 60 * 60 * 1000; // 5 hours delay on sundays (values in milliseconds)&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sleep 50;&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope someone could help me. Many thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&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/Server-Task-delaying/m-p/987334#M1255849</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987335#M1255853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone has an idea or a hint for me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 11:06:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987335#M1255853</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-09-21T11:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987336#M1255857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are your delay QVWs being aborted? Or do they run the full delay that you specified in the Timeout input field on the reload tab? Note that this Timeout value includes everything: all retries and all task setup/shutdown delays.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 12:06:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987336#M1255857</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-09-21T12:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987337#M1255861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Marcus, ignore my previous post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better check the QV Help article on statement SLEEP. The very first sentence will be very enlightening...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can fix this problem by embedding a SLEEP statement in a FOR loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 12:08:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987337#M1255861</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-09-21T12:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987338#M1255863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks, this is definitely a point and I will try it with such a for-loop!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know how many tasks the server could parallel execute even they are in waiting-loop? I think I have read somewhere that there are limitations at least by the server (or even by publisher?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 12:27:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987338#M1255863</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-09-21T12:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987339#M1255865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes there are limits to the number of parallel reload jobs you can have running (you can start many more but they will be queued). The limit can be modified. Best practice is to not set this number to anything higher than the number of cores in your server &lt;EM&gt;minus one&lt;/EM&gt;. Reloads (especially JOINs) may cause a core to go to 100% load, and you don't want all cores to be in this state as Windows will become unresponsive (the reloads will succeed though &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See QMC-&amp;gt;System-&amp;gt;Setup-&amp;gt;QlikView Servers-&amp;gt;&lt;EM&gt;your servername&lt;/EM&gt;-&amp;gt;Performance-&amp;gt;Reload limits.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 12:42:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987339#M1255865</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-09-21T12:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987340#M1255867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How does this queueing work? Will they be executed considering to their start-time and after the first few task-chaines are finished the next one within the queue started although is origin start-time was already for hours or will they be skipped?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 13:51:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987340#M1255867</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-09-21T13:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987341#M1255869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes indeed. If you have two cores available for reloads, and four tasks should start at the same time, two of them will be delayed until Reload engines become available. As one of the first two reload tasks is completed, the reload engine will be freed up and the next task will allocate it for script execution. As far as I know, the mechanism is first-come, first-served-based.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The funny thing is that the 4 tasks-2 cores setup will show 4 green play buttons in the QMC Status screen, so that you know that 4 tasks are due to be completed. But only 2 of them are actually running simultaneously.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 14:14:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987341#M1255869</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-09-21T14:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987342#M1255871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks - then it should work only with the measure that I applied the for-loop to extend the max. sleep-time. &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;I see&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;then&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;hopefully&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;the next&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;Sunday&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;against &lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 14:25:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987342#M1255871</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-09-21T14:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987343#M1255873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 14:27:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987343#M1255873</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-09-21T14:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987344#M1255875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The first two tasks worked (after implementing the hours-loop) fine with each 5 hours delaying to the normal start-time. But all then followings tasks failed with these error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif';"&gt;27.09.2015 06:30:01 Error Failed to allocate a QlikView Engine.&lt;BR /&gt;27.09.2015 06:30:01 Error No QlikView Engine was available after waiting for 45 minutes&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For me it looked that only two task would work parallel and/or waiting tasks will be aborted after 45 minutes. Are there further settings to influence this? What are the max. Limits for parallel tasks, waiting times and so on?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other ideas to delay tasks?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Sep 2015 10:31:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987344#M1255875</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-09-27T10:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987345#M1255877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I temporarily switched over from the bbq to a portable qlikview server (someone else is doing the dishes &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;) to bring you some good news: yes, there is a setting to improve your situation, but it is hidden in a configuration file and the QMC won't be of any help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open &lt;SPAN style="font-family: courier new,courier;"&gt;C:\Program Files\QlikView\Distribution Service\QVDistributionService.exe.config&lt;/SPAN&gt;. Notepad will do just fine, but you can use any text editor.&lt;/P&gt;&lt;P&gt;Scroll down until you encouter a setting called "QvbWaitTimeoutMinutes". Overthere you'll find your value of 45 minutes. Increase this value so that it takes the maximum delay into account: the 5-hour wait time+the actual reload delay+any margin that you think is suitable.&lt;/P&gt;&lt;P&gt;Save and restart the QDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that this is a global setting. From now on, all queued tasks will wait for a free QVB engine for a very long time before giving up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatives? As far as I can see you are fighting a limitation of the standard Publisher "built into" QlikView Server: every task has only one trigger with a single set of specifications and those turn out not to be very flexible at all. Possible solutions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Buy a Publisher license (too obvious and probably not very helpful...) With a full Publisher, you can give a task any number of triggers with any type of settings. For example running a task at a fixed time 6 days every week, and at another time on sunday only.&lt;/LI&gt;&lt;LI&gt;Or set your reload tasks to be triggered by "an external event", and use Windows Task Scheduler in combination with&lt;A href="https://community.qlik.com/docs/DOC-5111"&gt;QMSEDX Enhanced&lt;/A&gt; to trigger a single task at different times every other day. More complex but very flexible.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Sep 2015 15:06:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987345#M1255877</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-09-27T15:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987346#M1255878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks. I will have a closer look in the next week on these setting but I think I will give it a try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe with an future extension of our environment I could get a publisher but it's no topic for the next time. External trigger per EDX would mean I had to use only those trigger then within the server is only one trigger for an application available and I think the disadvantages are greater then the benefits (here in my case, not in general).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Sep 2015 15:58:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987346#M1255878</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-09-27T15:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987347#M1255879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The ninth task-chain failed after six hours (delaying was five hours) with the following error-message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif';"&gt;04.10.2015 13:25:10 Warning The QlikView Engine is Reloading, it will be killed (Please ignore logged warnings/errors about the kill).&lt;BR /&gt; 04.10.2015 13:25:11 Error The task "Controls/CheckWeekDay_Log+Meta.qvw" failed. Exception: QDSMain.Exceptions.TaskFailedException: Task execution failed with errors to follow. ---&amp;gt; QDSMain.Exceptions.ReloadFailedException: Reload failed ---&amp;gt; System.Threading.ThreadAbortException: Der Thread wurde abgebrochen. bei System.Threading.WaitHandle.WaitOneNative(SafeHandle waitableSafeHandle, ....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;But I believe my problem is solved - I have done both increasing the qvbwaittimeoutminutes and the number of parallel qvb-tasks - and I think that with a little bit fine-tuning it will run without any error. And even if the last chain with my logging- and meta-data failed it's no drama - nobody needs them on a sunday.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Oct 2015 13:00:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987347#M1255879</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-10-04T13:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987348#M1255880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note that we have run into this problem as well, and have been advised by QlikView support that bumping the &lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;QvbWaitTimeoutMinutes parameter up much more than the default 45 minutes can risk having the load run and be unable to write out the QVW at the end because of a Windows lock that expires on the file--- apparently, when the task is triggered, QV sets a lock on the QVW so that it isn't touched until it can get to it-- and Windows can timeout the lock&amp;nbsp; after 45 minutes, causing the reload write-out of the qvw to fail.&amp;nbsp;&amp;nbsp; So the idea of setting the value to 5-hours would seem to be erroneous.&amp;nbsp;&amp;nbsp; We're looking into instead governing the task triggers to depend on when the engines are available.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 20:41:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987348#M1255880</guid>
      <dc:creator />
      <dc:date>2016-03-23T20:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Server-Task delaying</title>
      <link>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987349#M1255881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the general statement that with a longer timeout-setting the risks increase will be correct - but in my in case it runs now stable since month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2016 07:29:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Server-Task-delaying/m-p/987349#M1255881</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-03-29T07:29:13Z</dc:date>
    </item>
  </channel>
</rss>

