HiveBrain v1.2.0
Get Started
← Back to all entries
patternsqlMinor

On which machine should TCP Chimney Offload be disabled?

Submitted by: @import:stackexchange-dba··
0
Viewed 0 times
tcpdisabledoffloadshouldwhichchimneymachine

Problem

I am advising someone on how to disable TCP Chimney Offload, which is enabled by default by Windows Server 2003 SP2. We are working in an environment with multiple server machines, namely the application server machine which communicates with the database server machine.

This can cause communication problems between application and database. See KB942861 and Windows Scalable Networking Pack - Possible Performance and Concurrency Impacts to SQL Server Workloads.

On which machine should TCP Chimney Offload be disabled? Application, database or both?

Solution

Bit of a carbon copy of a previous answer...

Personally, I disable it at both ends of the pipe but the problem usually manifests at the database end (due to the comparatively high traffic). As described in this MSDN blog post, I would start with disabling in the OS with:

netsh int ip set chimney DISABLED


It may be necessary to disable the features at the card driver level in some cases. It certainly won't hurt to do so by default.

Code Snippets

netsh int ip set chimney DISABLED

Context

StackExchange Database Administrators Q#45597, answer score: 9

Revisions (0)

No revisions yet.