dctcp.txt 1.6 KB

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