Modified by Feng Xie

44
Mohammad Alizadeh, Albert Greenberg, David A. Maltz, Jitendra Padhye Parveen Patel, Balaji Prabhakar, Sudipta Sengupta, Murari Sridharan Modified by Feng Xie Data Center TCP (DCTCP) 1

description

Data Center TCP (DCTCP). Mohammad Alizadeh, Albert Greenberg, David A. Maltz, Jitendra Padhye Parveen Patel, Balaji Prabhakar, Sudipta Sengupta, Murari Sridharan. Modified by Feng Xie. Data Center Packet Transport. Cloud computing service provider Amazon,Microsoft,Google - PowerPoint PPT Presentation

Transcript of Modified by Feng Xie

Page 1: Modified by Feng Xie

Mohammad Alizadeh, Albert Greenberg, David A. Maltz, Jitendra Padhye Parveen Patel, Balaji Prabhakar, Sudipta Sengupta, Murari Sridharan

Modified by Feng Xie

Data Center TCP(DCTCP)

1

Page 2: Modified by Feng Xie

Data Center Packet Transport

• Cloud computing service provider– Amazon,Microsoft,Google

• Transport inside the DC– TCP rules (99.9% of traffic)

• How’s TCP doing?

2

Page 3: Modified by Feng Xie

TCP in the Data Center

• We’ll see TCP does not meet demands of apps.– Incast

Suffers from bursty packet dropsNot fast enough utilize spare bandwidth

– Builds up large queues: Adds significant latency. Wastes precious buffers, esp. bad with shallow-buffered switches.

• Operators work around TCP problems.‒ Ad-hoc, inefficient, often expensive solutions

• Our solution: Data Center TCP

3

Page 4: Modified by Feng Xie

Case Study: Microsoft Bing

• Measurements from 6000 server production cluster

• Instrumentation passively collects logs ‒ Application-level‒ Socket-level‒ Selected packet-level

• More than 150TB of compressed data over a month

4

Page 5: Modified by Feng Xie

TLA

MLAMLA

Worker Nodes

………

Partition/Aggregate Application Structure

5

Picasso

“Everything you can imagine is real.”

“Bad artists copy. Good artists steal.”

“It is your work in life that is the ultimate seduction.“

“The chief enemy of creativity is good sense.“

“Inspiration does exist, but it must find you working.”“I'd like to live as a poor man

with lots of money.““Art is a lie that makes us

realize the truth.“Computers are useless.

They can only give you answers.”

1.

2.

3.

…..

1. Art is a lie…

2. The chief…

3.

…..

1.

2. Art is a lie…

3. …

..Art is…

Picasso• Time is money

Strict deadlines (SLAs)

• Missed deadline Lower quality result

Deadline = 250ms

Deadline = 50ms

Deadline = 10ms

Page 6: Modified by Feng Xie

Workloads

• Partition/Aggregate (Query)

• Short messages [50KB-1MB] (Coordination, Control state)

• Large flows [1MB-50MB] (Data update)

6

Delay-sensitive

Delay-sensitive

Throughput-sensitive

Page 7: Modified by Feng Xie

Impairments

• Incast

• Queue Buildup

• Buffer Pressure

7

Page 8: Modified by Feng Xie

Incast

8

TCP timeout

Worker 1

Worker 2

Worker 3

Worker 4

Aggregator

RTOmin = 300 ms

• Synchronized mice collide. Caused by Partition/Aggregate.

Page 9: Modified by Feng Xie

Queue Buildup

9

Sender 1

Sender 2

Receiver

• Big flows buildup queues. Increased latency for short flows.

• Measurements in Bing cluster For 90% packets: RTT < 1ms For 10% packets: 1ms < RTT < 15ms

Page 10: Modified by Feng Xie

Data Center Transport Requirements

10

1. High Burst Tolerance– Incast due to Partition/Aggregate is common.

2. Low Latency– Short flows, queries

3. High Throughput – Large file transfers

The challenge is to achieve these three together.

Page 11: Modified by Feng Xie

Balance Between Requirements

11

High Burst ToleranceHigh Throughput

Low Latency

DCTCP

Deep Buffers: Queuing Delays Increase Latency

Shallow Buffers: Bad for Bursts & Throughput

Reduced RTOmin

(SIGCOMM ‘09) Doesn’t Help Latency

AQM – RED: Avg Queue Not Fast Enough for Incast

Objective:Low Queue Occupancy & High Throughput

Page 12: Modified by Feng Xie

The DCTCP Algorithm

12

Page 13: Modified by Feng Xie

Review: The TCP/ECN Control Loop

13

Sender 1

Sender 2

Receiver

ECN Mark (1 bit)

ECN = Explicit Congestion Notification

Page 14: Modified by Feng Xie

Two Key Ideas1. React in proportion to the extent of congestion, not its presence.

Reduces variance in sending rates, lowering queuing requirements.

2. Mark based on instantaneous queue length. Fast feedback to better deal with bursts.

18

ECN Marks TCP DCTCP

1 0 1 1 1 1 0 1 1 1 Cut window by 50% Cut window by 40%

0 0 0 0 0 0 0 0 0 1 Cut window by 50% Cut window by 5%

Page 15: Modified by Feng Xie

Data Center TCP AlgorithmSwitch side:– Mark packets when Queue Length > K.

19

Sender side:– Maintain running average of fraction of packets marked (α).

In each RTT:

Adaptive window decreases:– Note: decrease factor between 1 and 2.

B KMark Don’t Mark

Page 16: Modified by Feng Xie

DCTCP in Action

20

Setup: Win 7, Broadcom 1Gbps SwitchScenario: 2 long-lived flows, K = 30KB

(Kby

tes)

Page 17: Modified by Feng Xie

Why it Works

1. High Burst Tolerance Large buffer headroom → bursts fit. Aggressive marking → sources react before packets are

dropped.

2. Low Latency Small buffer occupancies → low queuing delay.

3. High Throughput ECN averaging → smooth rate adjustments, cwind low

variance.21

Page 18: Modified by Feng Xie

Analysis

22

Time

(W*+1)(1-α/2)

W*

Window Size

W*+1

Page 19: Modified by Feng Xie

Packets sent in this RTT are marked.

Analysis

22

Time

(W*+1)(1-α/2)

W*

Window Size

W*+1

Page 20: Modified by Feng Xie

Analysis

• How low can DCTCP maintain queues without loss of throughput? • How do we set the DCTCP parameters?

22

Need to quantify queue size oscillations (Stability).

85% Less Buffer than TCP

Page 21: Modified by Feng Xie

Evaluation• Implemented in Windows stack. • Real hardware, 1Gbps and 10Gbps experiments

– 90 server testbed– Broadcom Triumph 48 1G ports – 4MB shared memory– Cisco Cat4948 48 1G ports – 16MB shared memory– Broadcom Scorpion 24 10G ports – 4MB shared memory

• Numerous benchmarks– Throughput and Queue Length– Multi-hop– Queue Buildup– Buffer Pressure

23

– Fairness and Convergence– Incast– Static vs Dynamic Buffer Mgmt

Page 22: Modified by Feng Xie

Experiment implement

• 45 1G servers connected to a Triumph, a 10G server extern connection– 1Gbps links K=20 – 10Gbps link K=65

• Generate query, and background traffic– 10 minutes, 200,000 background, 188,000 queries

• Metric:– Flow completion time for queries and background flows.

24

We use RTOmin = 10ms for both TCP & DCTCP.

Page 23: Modified by Feng Xie

Baseline

25

Background Flows Query Flows

Page 24: Modified by Feng Xie

Baseline

25

Background Flows Query Flows

Low latency for short flows.

Page 25: Modified by Feng Xie

Baseline

25

Background Flows Query Flows

Low latency for short flows. High throughput for long flows.

Page 26: Modified by Feng Xie

Baseline

25

Background Flows Query Flows

Low latency for short flows. High throughput for long flows. High burst tolerance for query flows.

Page 27: Modified by Feng Xie

Scaled Background & Query10x Background, 10x Query

26

Page 28: Modified by Feng Xie

Conclusions

• DCTCP satisfies all our requirements for Data Center packet transport. Handles bursts well Keeps queuing delays low Achieves high throughput

• Features: Very simple change to TCP and a single switch parameter

K. Based on ECN mechanisms already available in

commodity switch.27

Page 29: Modified by Feng Xie

29

Congestion Control for High Bandwidth-Delay Product Networks

D. Katabi (MIT), M. Handley (UCL), C. Rohrs (MIT) – SIGCOMM’02

Page 30: Modified by Feng Xie

Basics of TCP Congestion Control

• Bandwidth-delay product– Capacity of the “pipe” between a TCP sender and a TCP

receiver

• Congestion window (cwnd)– Sender’s estimation of the capacity

• Additive Increase and Multiplicative Decrease (AIMD) algorithm– no loss: cwnd = cwnd + s– loss: cwnd = cwnd – cwnd/2

Page 31: Modified by Feng Xie

Motivations• Inadequacy of TCP, as bandwidth-delay product

increases– Prone to instability

• regardless of AQM schemes

– Inefficient

• Fairness concern– TCP tends to bias against long RTT flows

• Satellite links, wireless links, etc.

Page 32: Modified by Feng Xie

Design Rationale• NOT an end-to-end approach• Using precise congestion signaling• Decoupling efficiency and fairness control

Page 33: Modified by Feng Xie

XCP (eXplicit Control Protocol)• Maintains high utilization, small queues, and almost

no drops, as bandwidth/delay increases– drop: less than one in a million packets

• Maintains good performance in dynamic environment (with many short web-like flows)

• No bias against long RTT flows

Page 34: Modified by Feng Xie

Sender&Receiver’s Role

• Sender– Fill the congestion header– Update cwnd = max(cwnd + H_feedback, s)

• Receiver– Copy H_feedback to ACK

Page 35: Modified by Feng Xie

XCP – Router’s Role

• Control Interval Estimation– Average RTT

• Efficiency Control– Maximize link utilization

• Fairness Control– Achieve fairness among individual flows

Page 36: Modified by Feng Xie

Efficiency Controller (EC)

• Aggragate feedback (total H_feedback)

– , : constant value– d: control interval (average RTT)– S: spare bandwidth– Q: persistent queue size

• Stability requirement determines = 0.4; = 0.226

– Independent of delay, capacity and number of flows

Qsd

Page 37: Modified by Feng Xie

Fairness Controller (FC)

• Achieve fairness via AIMD algorithm– > 0, equal throughput increment of all flows– < 0, throughput decrement proportional to its current

throughput

Page 38: Modified by Feng Xie

Performance Evaluation

• Simulation topology

Page 39: Modified by Feng Xie

Performance Evaluation

Bandwidth Delay

Page 40: Modified by Feng Xie

Performance Evaluation

Mice arrival rate Different RTT flow

Page 41: Modified by Feng Xie

The dynamics of XCP

Page 42: Modified by Feng Xie

Conclusion

• XCP provides a theoretically analysis, yet effective approach to congestion control. It obtains excellent performance, independent of link capacity, delay and number of flows.

Page 43: Modified by Feng Xie

DCTCP vs. XCP

• Date center • Practical

• High bandwidth-delay

• Theoretic

43

Page 44: Modified by Feng Xie

44