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

Announcements
Qlik Unveils New Agentic Capabilities Across Analytics, Data Engineering, and Trust: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
covenant_bi
Creator
Creator

Temporarily use scheduler RIM node for reloads

We have a Qlik Sense Production environment with 2 scheduler RIM nodes where we balance the reloads based on a custom property setting on the app to send it to the priority node (fast lane) or regular node.  We had an unscheduled database downtime and had to halt everything.  Now I have a backlog of items waiting for regular node but priority node is available for use.  Any ideas on how to temporarily turf some work over to that one without messing with the load balancer rules too much?

1 Solution

Accepted Solutions
John_Sathya
Support
Support

@covenant_bi ,

You can set up a security rules in such a way that the desired apps to run in Desired RIM node.

Running All the apps in A different node:

(((resource.id!="23b4437e-9a91-41bd-832a-8d2bef4280a6" and resource.id!="e5ab6f80-69ec-4fjon-a98f-75d760ashi42") and node.iscentral="false" and (node.name="RIM1" or node.name="RIM2")))

Running Big App on a specific node:

((node.name="RIM3" and (resource.id="23b4437e-9a91-41bd-832a-stenef4280a6" or resource.id="e5ab6f80-69ec-4f78-a98f-75d760cdbc42")))

We are just 'like' you and like to be liked when providing a helpful answer. You may press the 'Solution Accepted' button if an answer provided solves your issue.

 

View solution in original post

2 Replies
John_Sathya
Support
Support

@covenant_bi ,

You can set up a security rules in such a way that the desired apps to run in Desired RIM node.

Running All the apps in A different node:

(((resource.id!="23b4437e-9a91-41bd-832a-8d2bef4280a6" and resource.id!="e5ab6f80-69ec-4fjon-a98f-75d760ashi42") and node.iscentral="false" and (node.name="RIM1" or node.name="RIM2")))

Running Big App on a specific node:

((node.name="RIM3" and (resource.id="23b4437e-9a91-41bd-832a-stenef4280a6" or resource.id="e5ab6f80-69ec-4f78-a98f-75d760cdbc42")))

We are just 'like' you and like to be liked when providing a helpful answer. You may press the 'Solution Accepted' button if an answer provided solves your issue.

 

covenant_bi
Creator
Creator
Author

John, so there isn't a way other than calling out specific IDs.  I was looking for an outlet rule to say "go to the first open scheduler" like round robin.  This rule would be disabled most of the time.  If not, I can go the above route.  Thanks!