Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
mstoler
Partner - Specialist
Partner - Specialist

Qlik Sense create a custom reload rule that runs every 4 minutes from 9 AM to 8 PM

Hello,

Is there an option in the Qlik Sense (on premise) schedule to run a job every 4 minutes form 9 AM to 8 PM and then not run outside of these hours.  We are using Qlik Sense Nov 2020 On Premise but we can upgrade.

Thank You,

Michael

Labels (3)
1 Solution

Accepted Solutions
rubenmarin

Reload tasks - Custom option, is available from Feb-2022 Patch 1:

https://help.qlik.com/en-US/sense-admin/February2022/Content/Sense_Helpsites/WhatsNew/What-is-new-Fe...

If you don't want/can upgrade, another option would be to run a task each 4 minutes and check the hour at the start of script

 

LET vIsLoadHours = If(Hour(Now(1))>=9 and Hour(Now(1))<=20,1,0);
IF $(vIsLoadHours)=0 THEN
  Exit Script;
ENDIF

 

 

View solution in original post

6 Replies
rubenmarin

Hi, check the custom options: https://help.qlik.com/en-US/sense-admin/February2022/Subsystems/DeployAdministerQSE/Content/Sense_De...

I'm not very familiar with this option but it could be filtering by: * 9-20 and increment as 4 0 0 0.

mstoler
Partner - Specialist
Partner - Specialist
Author

Hello,

I don't see the Custom Option in Nov 2020. 

Can you send me a screen image?

 

mstoler_0-1648919068097.png

 

rubenmarin

Reload tasks - Custom option, is available from Feb-2022 Patch 1:

https://help.qlik.com/en-US/sense-admin/February2022/Content/Sense_Helpsites/WhatsNew/What-is-new-Fe...

If you don't want/can upgrade, another option would be to run a task each 4 minutes and check the hour at the start of script

 

LET vIsLoadHours = If(Hour(Now(1))>=9 and Hour(Now(1))<=20,1,0);
IF $(vIsLoadHours)=0 THEN
  Exit Script;
ENDIF

 

 

jpjust
Specialist
Specialist

Hi Ruben - I don't see the option and I am in  Qliksense February 2022 - 14.54.2.

Do you have any insight to this? Thanks

jpjust_0-1653597388243.png

 

 

rubenmarin

Hi, 14.54.2 is the Initial Release and you need at least Patch 1.

jpjust
Specialist
Specialist

Thanks Ruben