Queue Trigger in DB

Hey,

Can someone tell me where i find the Queue Trigger configuration in the DB?

I am talking about these:

My goal is to build something to make it toggle off and on. For example if i run into an repeating error i want the HDBots to stop working on the rest of the items till i manually or automatically reactivate it.

Greetings
Marvin

OpenCore keeps track of every workitem queue and how many items are ready to be processed (based on state and next run timestamp).

For every queue with one or more items ready to be processed, it sends a message to a queue with the name of the workitem queue. UNLESS you set the AMQP queue to something else, then it sends the message to that queue. It does this every 10 seconds by default (can be overwritten using the workitem_queue_monitoring_interval setting).

If a robot (robotqueue on the workitem queue object in the database) and an OpenRPA workflow (workflowid on the workitem queue object in the database) have been set, it will also send a message to that queue (this could be the ID of a role with RPA enabled or a user). So if you want to “stop” that, remove one of those fields. You can do that with a simple Update command using the client SDK or the update node from inside NodeRED.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.