when self hosting n8n with queue mode, can i set the frequency time in which the messages are going to be handled?
You can definitely control the frequency of message handling in n8n’s queue mode. The timing is primarily managed by the `workerPollInterval` setting in your `n8n.config.js` file. This setting determines how often the queue worker checks for new messages.
You’ll need to adjust the value of `workerPollInterval` (in milliseconds) to control the polling frequency. For example, setting it to `60000` will make the worker check the queue every minute.
Make sure to restart your n8n instance after changing this configuration.
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.