user1254579
user1254579

Reputation: 4009

when to adjust i/o affinity in sql server

what exactly is i/o affinity in SQL server?

An SQ L SERVER uses 64 cores. It has been discovered that a performance issues ,when large amount of data are written to tables under heavy system load.

Why to limit the number of cores that handle I/O by using I/O Affinity?

When to create an affinity mask?

Upvotes: 1

Views: 933

Answers (1)

M.P.
M.P.

Reputation: 272

It is used to control how many cores of CPU are used for disk operations and how many are used for the remaining SQL related services.

--> affinity I/O mask Option

Upvotes: 1

Related Questions