1

I know I can start my engine by ipengine --profile=/path/to/ipcontroller-engine.json. And there are len(c.ids) processes.

But, how can I set the numbers of processes running on every remote node? It seems that ipengine --profile=/path/to/ipcontroller-engine.json is just launch just one process on remote machine.

GoingMyWay
  • 16,802
  • 32
  • 96
  • 149

1 Answers1

1

ipengine starts one engine (process). If you want multiple engines, you need to call ipengine multiple times. One shortcut for this is the ipcluster engines command:

ipcluster engines -n 4

will start 4 engines.

minrk
  • 37,545
  • 9
  • 92
  • 87