Hello Community
I am new to n8n platform. I have recently started exploring & learning n8n platform (v 0.213.0). I am running it via docker.
I would like to know if there is a way to read from rabbitMQ queue at some specific time interval (e.g. read queue hourly or may be every 30 mins)?
I know we can use rabbitMQ trigger to read messages from queue however the trigger in question executes instantly as soon as one or more messages hit the queue whereas I want that trigger (or workflow) to run at scheduled interval only (e.g. hourly), instead of running immediately (when very first message hits the queue)
I tried to combine trigger schedule & rabbitMQ trigger in one single workflow (using merge node with configuration to wait for both inputs) but it is not helping me out as either of the trigger will execute the workflow and the other trigger won’t get executed.
For example if schedule trigger is waiting for its turn to execute and any message hits the queue meanwhile then rabbitMQ trigger will execute workflow and schedule trigger won’t be of any help in this scenario
I would appreciate if anyone in community can guide me how can I read rabbitMQ in scheduled mode (at some specific time interval or delay)?
Thanks