Master n8n Queue Mode: Scale Your Workflows to Thousands of Users (Step-by-Step Advanced Tutorial)

Had a great questions about SPECIALIZED Workers in your n8n Queue workflow. Here is my response to that:

Thanks for the kind words and grateful you are getting massive use out of it! :slight_smile: We aren’t planning any videos on specialized workers (Our team is sitting with me to help me plan the next videos ahead), but I’d say do the following:

  1. Add an Execute Command node at the start of a workflow
  2. Add the following linux command:

cat /proc/cpuinfo

  1. From there you’ll get all the data of the worker machine
  2. When a workflow needs the more advanced intensive work CPUs or GPU workers, then this node will detect it through the text (You’d just parse it to see what machine specs are) and if it matches, run the workflow, if it does not, then quit the workflow.

With the above you’ll be able to have specialized workers in your n8n queue list and use them as needed :slight_smile:

1 Like