26
ConfigTron: Tackling network diversity with heterogeneous configurations Usama Naseer , Theophilus Benson Duke University 1

ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

  • Upload
    others

  • View
    2

  • Download
    0

Embed Size (px)

Citation preview

Page 1: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

ConfigTron: Tackling network diversity with heterogeneous configurations

Usama Naseer , Theophilus BensonDuke University

1

Page 2: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Diversity in network conditions

2

Region RTT in ms

UK to Oceanic ~400

US to Southeastern Asia ~260

UK to East Asia ~350

North-America to India ~380

http://www.verizonenterprise.com/about/network/latency/#latency

Region Avg. RTT in ms Avg. packet loss %

Trans-Atlantic 74 0.05

Europe 11.25 0.05

North America 35 0.05

Intra-Japan 9 1

Trans-Pacific 102.8 1

Asia Pacific 102.6 1

Latin America 135 1

EMEA to Asia Pacific 120.5 1

Page 3: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Web App

HTTP

TLS

TCP

HTTP/1.1

Compression strategies

HTTP/2

v1.0, v1.1, v1.2, v1.3

Content serving stack

Cubic, Reno, Vegas, BBR, etc.

ICW, RTO, FastOpen etc.

Choice of queuing FIFO, FQ etc.

What we can have

Web App

HTTP/2

QUIC

Server OS

UDP

3

L4

L6

L7

Page 4: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Web App

HTTP

TLS

TCP

Content serving stack

4

L4

L6

L7

HTTP/1.1

H264

v1.3

Cubic

ICW=10 RTO=3s

FIFO

What we actually have one size fits all!

Page 5: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

5

In the light of divergent network characteristics, is theone-size-fits-all networking stack optimal?

Page 6: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Are the configurations being used optimal for everyone?

6

How speedy is SPDY? (NSDI ‘14)

• Verus (NSDI ‘15)-TCP versions

• How quick is QUIC? (IEEE ICC ‘16)-QUIC vs HTTP2 vs HTTP1.1

• Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11)-HTTP pipelining, TCP ICW, ABCA broader study to understand the impact of reconfiguration across different

layers.

Page 7: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Experimental setup• Controlled website replay

- MahiMahi

• Network emulation- NetEM + TC

• Realistic workloads- Alexa top 100

7

Dimensions Values

Network● RTT● Bandwidth● Loss rate

TCP/IPstack

● TCP ICW● Congestion control● Slow_start_after_idle● Low_latency● Auto_corking● Packet scheduling

Web App ● HTTP protocol

Website ● Web object size● # of objects

Page 8: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Reconfiguration improves performance!

8

Loss > 2.5% BW < 1Mbps

Higher number of objects

Page 9: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

9

Given the benefits of reconfiguration, how can we use network conditions reconfigure on the go?

Page 10: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

ConfigTron optimizes web performance by systematically reconfiguring web servers in a principled manner.

10

Website properties

User’s networkcharacteristics

Optimal configurationsIN

PU

TSO

UTP

UT

ConfigTron

Page 11: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

ConfigTron architecture

11

Configuration Manager

Request Router

Web server

Config. Agent

• Predicts optimal config.• Propagates information.

Forwards user’s request to the reconfigured server.

• Gets mappings from config. manager.

• Reconfigures servers stack.

1

23*

4

5

* Not required for every request.

Page 12: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Configuration Manager

12

Learning Database Learning Function

Page 13: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

13

Learning Database• Generates data related to performance of different configurations.

Synthetic data:• Mahimahi based web emulation• Pros

• Can be generated offline.

• Cons• Requires lots of resources.• Requires lots of execution time.

Real world data: • A/B tests• Pros

• Dynamic.• Adjusts with time.

• Cons• Impacts real users.• Needs mechanism for selection of real

users. (Kraken OSDI ‘16)

Configuration Manager

Learning Database Learning Function

Page 14: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

14

Learning Function

• Aggregates data from learning database to predict optimal configurations.

• Requires a learning algorithm to learn mappings from network conditions

to configurations.

• Machine Learning (Decision trees, SVM), Deep Learning (Reinforcement

learning), Statistical (Markov process)

Decision Trees

• One decision tree per website category.

Reno/CubicICW = 16

Configuration Manager

Learning Database Learning Function

Page 15: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Challenges in reconfiguring today’s stack

15

Dimensions Values Configuration Granularity

TCP/IP stack

TCP ICW Per connection (IP tables)

Congestion controlPer connection (setsockopt)

Auto_corking

Low_latencyKernel wide (proc interface)

Slow_start_after_idle

• TLS and HTTP layers are more flexible due to user space.

• Challenges:

- Requires rewriting chunks of kernel.

- User space TCP stacks are limited in configuration diversity (eg, only cubic or reno).

Page 16: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Request Router

Configuration Manager

IP-prefix to VM mapping

Config. rules

Telemetry

ConfigTron architecture (VM based)

16

Page 17: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Configuration Manager

Config. Rules + IP-prefix to port mapping

Telemetry

ConfigTron architecture (Socket based)

17C

on

fig.

Age

nt H

TTP Server

Sidecar

ConfigProxy

ConfigProxy

ConfigProxy

ConfigProxy

Web Server

Req

ue

st R

ou

ter

Page 18: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

18

VM based:

Pros:- VMs can be reconfigured in isolation.- Fine-grained control over resource usage.

Cons:- Higher resource usage.- Traps resources.- High startup times. May need to have

VMs on standby.

Socket based:

Pros:- Less resource intensive.- Can be created on-the-go.

Cons:- Not all TCP parameters are reconfigurable

by setsockopt.

Page 19: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Related work

- Overclocking Yahoo! CDN (ACM SIGCOMM ‘11) looks at configuring TCP at end hosts in a datacenter environment where controller has a view of entire network.

- We are broader in the sense that we are looking at more parameters across different layers.

- OpenTCP (Hot Topics in networks, ACM ‘12.) reconfigures TCP in data center environment whereas Software Defined Transport (ONS ’14) presents a programmable centralized platform to define transport mechanisms in data centers with a central controller. Similarly TROLL (IEEE NetSys ’17) uses central controller for protocol suggestions and makes decisions for network core and edge devices.

- ConfigTron is different since it reconfigures multiple layers in CDN server to optimize web performance, without the presence of a centralized controller.

- No control over end hosts (users) in case of web.

19

Page 20: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Conclusion

• One-size-fits-all configurations can be sub-optimal for a proportion of users.

• Network diversity can be tackled by heterogeneity in configurations.

• Reconfiguration can improve PLT by as much as 40%.

20

Page 21: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Future work + Discussion

• Inspector Gadget -- infers network stack configuration for web servers by active probing.

• AWS + PlanetLab deployment.

• Extending user-space TCP stacks.

• Network Estimation.

21

Page 22: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Questions?

[email protected]

22

Page 23: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

How many configurations are too many?

23

Page 24: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

No configuration is better than others!

24

Page 25: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

• Chen, Yingying, et al. "A provider-side view of web search response time." ACM SIGCOMM Computer Communication Review 43.4 (2013): 243-254.

25

Page 26: ConfigTron: Tackling network diversity with heterogeneous ......-QUIC vs HTTP2 vs HTTP1.1 • Overclocking the Yahoo!: CDN for faster web page loads. (ACM SIGCOMM ‘11) A broader

Network coverage wrt number of configurations

26