SlideShare ist ein Scribd-Unternehmen logo
1 von 32
Downloaden Sie, um offline zu lesen
Exploiting	Path	Diversity	in	Datacenters
Using	MPTCP-aware	SDN
Savvas	Zannettou,	Michael	Sirivianos,	Fragkiskos
Papadopoulos
Cyprus	University	of	Technology
ISCC	2016,	Messina,	Italy
Goal
• Offer	near-optimal	performance	and	robustness	
o In	datacenter	networks
• Use	Multipath	TCP	(MPTCP)	
o Create	as	few	MPTCP	subflows	as	possible
• We	propose	an	alternative	routing	mechanism
o Use	of	the	Software	Defined	Networking	(SDN)	paradigm
Multipath	TCP	(MPTCP)
• Presents	a	regular	TCP	interface	to	applications
• Enables	the	simultaneous	use	of	multiple	interfaces
• Spreads	data	across	several	subflows
o subflow	=	a	regular	TCP	connection	that	is	a	part	of	a	
larger	MPTCP	connection
• Provides	load	balancing	(MPTCP	scheduler)
3
MPTCP- Subflow	creation
• More subflows can
o Exploit more network paths
§ Can increase performance and robustness
• However they impose more overheads
o Large buffers to cope with reordering
o Higher CPU utilization
o SDN-specific overheads
§ SDN controller load
§ Installed rules on switches
4
Datacenter	Networks
• Goal: Each	host	should	be	able	to	transfer	data	at	it’s	
network	interface	bandwidth
• Multiple	redundant	paths	between	hosts
• MPTCP	as	the	transport	protocol	(proposed	by	Raiciu et	
al.	SIGCOMM	2011)
• Usually	combined	with	flow-based	Equal-Cost	Multi-Path	
Routing	(ECMP)
o Pick	among	Equal-Cost	paths	by	calculating	a	5-tuple	hash
5
ECMP	Limitations
• Considering	a	flow-based	ECMP	approach
o Random	selection	of	paths
o Utilizes	only	shortest	paths
ECMP	Limitations	(1)
• Considering	a	flow-based	ECMP	approach
o Random	selection	of	paths
o Utilizes	only	shortest	paths
Creates	2	
MPTCP	
subflows
Subflow 1
Flow-based	ECMP
Subflow 2
Subflow 1Subflow 2
Outcome: 2	paths	remain	unutilized.	
2	subflowsà one	subflow is	“redundant”
ECMP	Limitations	(2)
• Considering	a	flow-based	ECMP	approach
o Random	selection	of	paths
o Utilizes	only	shortest	paths
Creates	2	
MPTCP	
subflows
Subflow 1
Flow-based	ECMP
Subflow 2
Subflow 1Subflow 2
Outcome: 1	path	remain	unutilized
Created	2	subflows à no	“redundant”	subflows
Deterministic	Routing	Scenario
Creates	3	
MPTCP	
subflows
Subflow 1
Deterministic	
Routing	Mechanism
Subflow 2
Subflow 1Subflow 2
Outcome: All	paths	are	utilized	and	no	“redundant	”	subflows
Subflow 3
Subflow 3
System	Overview
10
Datacenter	Topologies
• FatTree Topology	(Al-Fares	et	al.	SIGCOMM	2008)
o Most	prominent	structured	datacenter	topology
• Jellyfish	Topology	(Singla et	al.	NSDI	12)
o No	structure	(random-based)	
• We	propose	a	dual-homed	topology	based	on	
Jellyfish	(DH-Jellyfish)
MPTCP-aware	SDN	Controller
• Main	components
o Topology	Manager	(TM)
§ Calculates	network	paths	between	hosts
o Forwarding	Module	(FM)
§ Decides	subflow-to-path	assignment
• Based	on	Floodlight	SDN	Controller	(Open	
Source)
• Released	and	publicly	available	on	Github (link	in	
manuscript)
12
Topology	Manager	(TM)
• Global	view	of	the	network
• Graph	theory	to	calculate	paths
o Depth-limited	DFS	algorithm
• Able	to	find	various	set	of	paths	such	as:
o Shortest	Paths
o K-Shortest	paths
o K-Edge-Disjoint	paths
13
Forwarding	Module	(FM)
• Random	approach
o Randomly	selects	a	path	from	the	obtained	set	of	paths	
(simulates	flow-based	ECMP)
• MPTCP-aware	approach
o Offers	deterministic	subflow	assignment	to	paths
o Extracts	MPTCP	options	to	identify	connections
o Stores	set	of	paths	and	subflow	assignment	in	the	
granularity	of	MPTCP	connection/	Source	IP	Address	
and	Destination	IP	Address
14
Evaluation	Setup
• MPTCP	Linux	Kernel	v0.90
• Mininet	Emulator
• Open	vSwitch
• Considered	Topologies
o 8-ary	FatTree
o Jellyfish	with	120	hosts	
o DH-Jellyfish	with	120	hosts
15
Evaluation	Setup	(cont.)
• Considered	routing	mechanisms:
o MPTCP-aware	approach	(M)
o Random-based	approach	(R)
• Traffic	patterns:
o Permutation	traffic	matrix	(PT)
§ Flows	share	links	only in	core	of	the	network
o Unconstrained	traffic	matrix	(UT)
§ Host	access	links	may	become	bottlenecks
16
Evaluation	Metrics
• Average	throughput	over	all	MTPCP	connections
• Distribution	of	MPTCP	throughput
o Fairness	between	MPTCP	connections
o Performance	of	worst	connection
• All	results	are	averaged	over	10	different	runs
17
Results	FatTree - PT
Results	Jellyfish	- PT
19
Results	for	UT	in	both	topologies
• No	performance	gains	from	using	the	MPTCP-aware	
approach	instead	of	the	random	approach
o Better	exploitation	of	paths	in	the	core	of	the	network	
doesn’t	help
o Flows	are	bottlenecked	at	the	hosts’	access	links
How	to	increase	performance	in	UT?
• Proposed	dual-homed	variant	of	Jellyfish	(DH-
Jellyfish)
o Hosts	have	two	interfaces
o Trade	some	path	diversity	in	the	core	of	the	network	in	
favor	of	increased	bandwidth	at	endpoints
• Does	creating	more	subflows	per	pair	of	IP	addresses	
increases	performance?
o MPTCP	Linux	Kernel	Patch	in	v0.90	(fullmesh	path	
manager)
21
Number	of	subflows	per	pair	of	IP	
addresses
22
Jellyfish	vs	DH-Jellyfish
23
Conclusions
• MPTCP-aware	approach	provides	performance	
benefits	over	random-based	approach
o Released	the	SDN	controller	on	Github
• Creating	multiple	subflows	in	multi-interface	settings	
yields	performance	benefits
o Linux	Kernel	Patch	added	in	MPTCP	v0.90
• Future	Work:
o Study	performance	with	short	and	long-lived	flows	(flow	
completion	time)
o Investigate	if	it	is	applicable	in	a	proactive	SDN	
environment
24
Back-up	slides
SDN	vs	Traditional	Networking
26
Control	Plane
Data	PlaneFrames	in Frames	out
SDN	Controller	
(Control	Plane)
OpenFlow Switch	
(Data	Plane)Frames	in Frames	out
OpenFlow Protocol
Network
OpenFlow Basics
27
Switch
Port
MAC
src
MAC
dst
Eth
type
VLAN
ID
IP
Src
IP
Dst
IP
Prot
TCP
sport
TCP
dport
Match Action Stats
1. Forward packet to port(s)
2. Encapsulate and forward to controller
3. Drop packet
4. Modify fields
Packet + byte counters
Rule
MPTCP-Connection	Establishment
28
FM	Algorithm	Pseudocode
29
Results	FatTree
30
Results	Jellyfish
31
FM	
• pathCache hashtable
o Stores information regarding set of paths
o Expires entries every 60 minutes
• flows hashtable
o Stores	information	regarding	MTPCP	connections	and	subflow	
assignment
o Expires	entries	every	5	seconds
• primaryIPs hashtable
o Stores	IP	addresses	pairs	that	involved	in	MP_CAPABLE	
handshakes
32

Weitere ähnliche Inhalte

Kürzlich hochgeladen

1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
ssuserdda66b
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Kürzlich hochgeladen (20)

1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 

Empfohlen

Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Empfohlen (20)

PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy Presentation
 

Exploiting Path Diversity in Datacenters using MPTCP-aware SDN