<?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 Qlik Sense rest connection to mendix in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-rest-connection-to-mendix/m-p/1675828#M7997</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am using the qlik sense rest connector to a mendix database. When loading the data Mendix will regardless of any query parameter load the tables completely, causing load and stress on the database.&lt;BR /&gt;&lt;BR /&gt;Is there a way to pass parameters in the load script that Mendix will pick up and search the result accordingly?&lt;BR /&gt;&lt;BR /&gt;For instance I have a dashboard that shows data from orderpickers in the warehouse,&amp;nbsp; which has to be refreshed every 5 minutes. Now the when I start loading the data the load script fails and the mendix database is slowed down or crashes.&lt;/P&gt;</description>
    <pubDate>Fri, 02 Apr 2021 08:49:32 GMT</pubDate>
    <dc:creator>tverkleij</dc:creator>
    <dc:date>2021-04-02T08:49:32Z</dc:date>
    <item>
      <title>Qlik Sense rest connection to mendix</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-rest-connection-to-mendix/m-p/1675828#M7997</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am using the qlik sense rest connector to a mendix database. When loading the data Mendix will regardless of any query parameter load the tables completely, causing load and stress on the database.&lt;BR /&gt;&lt;BR /&gt;Is there a way to pass parameters in the load script that Mendix will pick up and search the result accordingly?&lt;BR /&gt;&lt;BR /&gt;For instance I have a dashboard that shows data from orderpickers in the warehouse,&amp;nbsp; which has to be refreshed every 5 minutes. Now the when I start loading the data the load script fails and the mendix database is slowed down or crashes.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2021 08:49:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-rest-connection-to-mendix/m-p/1675828#M7997</guid>
      <dc:creator>tverkleij</dc:creator>
      <dc:date>2021-04-02T08:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense rest connection to mendix</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-rest-connection-to-mendix/m-p/1719537#M7998</link>
      <description>&lt;P&gt;We have the same kind of problem with Mendix.&lt;/P&gt;&lt;P&gt;Since the amount of data has grown we get a timeout with every connection and there doesn't seem to be a parameter for pagination that can divide the data in smaler chunks.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Have you found a solution in the mean time?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2020 08:31:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-rest-connection-to-mendix/m-p/1719537#M7998</guid>
      <dc:creator>roelvandeven</dc:creator>
      <dc:date>2020-06-17T08:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense rest connection to mendix</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-rest-connection-to-mendix/m-p/1729290#M7999</link>
      <description>&lt;P&gt;I ran into the same issue and the only way I was able to partially solve the issue was by creating a new entity that stores a TimeStamp(LastExtract).&amp;nbsp; When the microflow is called via the REST API connection only entries with a DateModified timestamp that are after the&amp;nbsp;LastExtract timestamp are pulled and then the&amp;nbsp;LastExtract timestamp is updated to the current time.&amp;nbsp; Everything works well but the issue is if the Qliksense Load script fails later down the line, the&amp;nbsp;LastExtract extract date is still adjusted and therefore doesn't correctly pull the newly updated lines.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am currently looking to see if there is a way in the Qliksense loadscript to POST/PUT back to mendix a flag at the end of the script to indicate all went well and then and only then do I update the&amp;nbsp;LastExtract timestamp.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 16:40:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-rest-connection-to-mendix/m-p/1729290#M7999</guid>
      <dc:creator>EPagan</dc:creator>
      <dc:date>2020-07-20T16:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense rest connection to mendix</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-rest-connection-to-mendix/m-p/2129116#M12910</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/122516"&gt;@EPagan&lt;/a&gt;, you can handle script errors with the 'ScriptErrorCount' script function e.g.&amp;nbsp;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotInCloudServices,Targets.NotInKubernetes"&gt;&lt;EM&gt;If ScriptErrorCount = 0 then&lt;/EM&gt;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotInCloudServices,Targets.NotInKubernetes"&gt;&lt;EM&gt;STORE QV_Table INTO File.QVD;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotInCloudServices,Targets.NotInKubernetes"&gt;&lt;EM&gt;Let LastExecTime = ThisExecTime;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotInCloudServices,Targets.NotInKubernetes"&gt;&lt;EM&gt;End If&lt;/EM&gt;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotInCloudServices,Targets.NotInKubernetes"&gt;Where are you saying in your REST call 'load records where&amp;nbsp;&lt;SPAN&gt;DateModified timestamp are after the&amp;nbsp;LastExtract timestamp' ? Could you share an example? Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 09:12:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-rest-connection-to-mendix/m-p/2129116#M12910</guid>
      <dc:creator>Alvaro_Palacios</dc:creator>
      <dc:date>2023-10-17T09:12:04Z</dc:date>
    </item>
  </channel>
</rss>

