Can I make multiple actions use the same action queue or do I need to have a
discrete queue for every single action?
The particular use case I'm thinking of is similar to this:
if $msg contains 'some match' then {
$ActionQueueType LinkedList
$ActionQueueFileName redis1
$ActionResumeRetryCount -1
action(do a redis INCR on some key)
$ActionQueueType LinkedList
$ActionQueueFileName redis1 # <-- using the same queue file name here
$ActionResumeRetryCount -1
action(do a redis EXPIRE on some key)
}
I want to queue these up in a disk based action queue, but I obviously don't
want the chance of the expire happening before the incr in this case, so I want
to use the same queue for both of them. I'm under the impression that I can't
do that because it will corrupt the disk backed queue if two different actions
use it… so would this be something I would just default back to the main
message queue instead?
-- Gary F.
_______________________________________________
rsyslog mailing list
http://lists.adiscon.net/mailman/listinfo/rsyslog
http://www.rsyslog.com/professional-services/
What's up with rsyslog? Follow https://twitter.com/rgerhards
NOTE WELL: This is a PUBLIC mailing list, posts are ARCHIVED by a myriad of
sites beyond our control. PLEASE UNSUBSCRIBE and DO NOT POST if you DON'T LIKE
THAT.