Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
JordanGaw24
Contributor II
Contributor II

Qlik Sense Saas - Refresh App more than ever hour

Hi All,

I am new to Qlik and I was wondering is there a way to refresh an app's data more than once every hour. Due to the nature of some of the reports we are wanting to use on our shop floor we are needing this to update every 2-5 minutes?

I k

Labels (1)
  • SaaS

2 Replies
Don_Stocks_
Contributor III
Contributor III

Unfortunately, one hour is currently the shortest reload interval.

It's far from ideal, but one possible way around this limitation is to use Qlik Data Transfer to monitor a data folder and set your application to reload after the transfer occurs. You can push small QVDs to this folder every so often, which will in turn reload your app. Again, not ideal.. but it's one of the few options until Qlik improves the capability, which is said to be on the roadmap. 

Don_Stocks__0-1625606460345.png

EDIT: Another option would be to trigger the reload through the API.

Don Stocks
JandreKillianRIC
Partner Ambassador
Partner Ambassador

Hi @JordanGaw24 

You can use the API to set the reload shorter that 1 hour. 

Build the reload task - Get the reload task Id using 

GET > https://tenant.eu.qlikcloud.com/api/v1/reload-tasks

Now do a POST 

https://tenant.eu.qlikcloud.com/api/v1/reload-tasks/{TaskID} (Replace the TaskID with the actual Task ID) 
PostBody 

{"appId":"519989f5-36ff-473c-916d-bbed117fce5e",
"partial":false, 
"timeZone":"Africa/Johannesburg",
"autoReload":false,
"recurrence":["RRULE:FREQ=MINUTELY;INTERVAL=30"],
"endDateTime":"2050-10-12T23:59:00",
"startDateTime":"2024-01-17T00:00:00",
"autoReloadPartial":false,
"type":"scheduled_reload"}
 
This is a 30 min reload. I have tested this using 2 minutes as well. All Working 
 
You can check out this link 
 
Regards Jandre 

Mark the solution as accepted that solved your problem and if you found it useful, press the like button! Check out my YouTube Channel | Follow me on LinkedIn