dctcp.rst 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .. SPDX-License-Identifier: GPL-2.0
  2. ======================
  3. DCTCP (DataCenter TCP)
  4. ======================
  5. DCTCP is an enhancement to the TCP congestion control algorithm for data
  6. center networks and leverages Explicit Congestion Notification (ECN) in
  7. the data center network to provide multi-bit feedback to the end hosts.
  8. To enable it on end hosts::
  9. sysctl -w net.ipv4.tcp_congestion_control=dctcp
  10. sysctl -w net.ipv4.tcp_ecn_fallback=0 (optional)
  11. All switches in the data center network running DCTCP must support ECN
  12. marking and be configured for marking when reaching defined switch buffer
  13. thresholds. The default ECN marking threshold heuristic for DCTCP on
  14. switches is 20 packets (30KB) at 1Gbps, and 65 packets (~100KB) at 10Gbps,
  15. but might need further careful tweaking.
  16. For more details, see below documents:
  17. Paper:
  18. The algorithm is further described in detail in the following two
  19. SIGCOMM/SIGMETRICS papers:
  20. i) Mohammad Alizadeh, Albert Greenberg, David A. Maltz, Jitendra Padhye,
  21. Parveen Patel, Balaji Prabhakar, Sudipta Sengupta, and Murari Sridharan:
  22. "Data Center TCP (DCTCP)", Data Center Networks session"
  23. Proc. ACM SIGCOMM, New Delhi, 2010.
  24. http://simula.stanford.edu/~alizade/Site/DCTCP_files/dctcp-final.pdf
  25. http://www.sigcomm.org/ccr/papers/2010/October/1851275.1851192
  26. ii) Mohammad Alizadeh, Adel Javanmard, and Balaji Prabhakar:
  27. "Analysis of DCTCP: Stability, Convergence, and Fairness"
  28. Proc. ACM SIGMETRICS, San Jose, 2011.
  29. http://simula.stanford.edu/~alizade/Site/DCTCP_files/dctcp_analysis-full.pdf
  30. IETF informational draft:
  31. http://tools.ietf.org/html/draft-bensley-tcpm-dctcp-00
  32. DCTCP site:
  33. http://simula.stanford.edu/~alizade/Site/DCTCP.html