For a single application pool, how many worker processes should be allowed to run?

enter image description here

Honestly, I do not know the effect of increasing or decreasing the number of work processes.

For one application pool, how many workflows should be allowed to run?

+3
source share
2 answers

I follow and I look for it in the documentation so that you do not run more workflows and then twice as many processor cores.

  • In one base system: 2
  • In a dual-core system: 4
  • and etc.
+3
source

You should also be aware that increasing workflows creates a web garden. All workflows have their own copy of the application state, session state in the process, caches, and static data.

+3
source

All Articles