What is the use of Workload governor in SQL?
Workload governor sits between the
client and the database engine and counts the number of connections per
database instance. If Workload governor finds that the number of
connections exceeds eight connections, it starts stalling the
connections and slowing down the database engine. One important thing is
that it does not limit the number of connections but makes the
connection request go slow. By default 32,767 connections are allowed
both for SQL SERVER
and MSDE. But it just makes the database engine go slow above eight connections.
Comments
Post a Comment