Difference between revisions of "TCP Handoff"
From LVSKB
m |
|||
Line 4: | Line 4: | ||
== Introduction == | == Introduction == | ||
+ | |||
+ | |||
+ | == Implementation == | ||
+ | |||
+ | * [[TCPHA]] - a [[TCP Handoff|TCP handoff]] implementation for the Linux operating system | ||
== External Links == | == External Links == | ||
* [http://hpl.hp.com/research/iii/projects/papers/tcphandoff-lncs.pdf Modular TCP Handoff Design in STREAMS-Based TCP/IP Implementation] | * [http://hpl.hp.com/research/iii/projects/papers/tcphandoff-lncs.pdf Modular TCP Handoff Design in STREAMS-Based TCP/IP Implementation] | ||
+ | |||
+ | [[Category:Load Balancing]] |
Revision as of 04:07, 10 December 2005
TCP handoff is a technique to handoff one TCP socket endpoint from one node to the other seamlessly, which is to migrate the established TCP state from the original node to the new node, so that the new node can send packets to the other TCP endpoint directly.
TCP handoff is mostly used to do content-aware request distribution among servers, which enables intelligent distribution to provide quality of service requirements for different types of contents and to improve overall cluster performance.
Introduction
Implementation
- TCPHA - a TCP handoff implementation for the Linux operating system