Tema 5: Distribución de contenidos

Size: px
Start display at page:

Download "Tema 5: Distribución de contenidos"

Transcription

1 Tema 5: Distribución de contenidos 1. Introducción. 2. Arquitecturas. Cliente-Servidor Web proxies. Réplica de contenidos. 3. Caching y balanceado de carga 4. Un caso La red Akamai Bibliografía [GIL11] Gilbert Held, A practical Guide to Content Delivery Networks [FLU95] Fluckiger, Understanding networked multimedia. Arquitecturas de red para la distribución de contenidos

2 Objetivo: 1. Introducción. Conocer los mecanismos y arquitecturas para la distribución eficiente y escalable de contenidos en Internet. Para ello Revisaremos los diferentes arquitecturas de distribución de contenidos en Internet analizando sus ventajas e inconvenientes. Nos centraremos en el concepto de red de distribución de contenidos CDN Definición Mecanismos de distribución, redirección y gestión. Examinaremos un ejemplo de éxito: La red Akamai. 2

3 Single-site Single-Server 3 Arquitecturas de red para la distribución de contenidos

4 Single-site Single-Server Advantages: Reduced HW/SW Cost Disadvantages: Failure of server HW/SW maintenance while servicing Users experience unequal access delays Networking/Processing scalability problems. 4

5 Single-site Multiple-Servers: Server Farm Advantages: Resource Load Balancing Error resilience improved. HW/SW upgrading without service disrupting Disadvantages: Users experience unequal access delays Networking scalability problems?? HW/SW cost increases 5

6 Multiple-Sites Single-Server: Mirrors Advantages: Content is closer to users Fast response Supports network failure at origin server site Disadvantages: Keep content updated Source server site require redundant network access services HW/SW cost increases?? 6

7 Client-side devices: Web Proxies Web/Content Proxies: Client-side agents accessing web contents Caching Content Saves network resources Reduces server load Speedups web responses 7

8 Proxies play both roles A server to the client A client to the server Web Proxies are Intermediaries Proxy 8

9 Proxy Caching Client #1 requests Client sends GET fun.jpg to the proxy Proxy sends GET fun.jpg to the server Server sends response to the proxy Proxy stores the response, and forwards to client Client #2 requests Client sends GET fun.jpg to the proxy Proxy sends response to the client from the cache Benefits Faster response time to the clients Lower load on the Web server Reduced bandwidth consumption inside the network 9

10 Explicit configuration Browser configured to use a proxy Directs all requests through the proxy Problem requires user action Getting Requests to the Proxy Transparent proxy (or interception proxy ) Proxy lies in path from the client to the servers Proxy intercepts packets en route to the server and interposes itself in the data transfer Benefit does not require user action 10

11 Challenges of Transparent Proxies Must ensure all packets pass by the proxy By placing it at the only access point to the Internet E.g., at the border router of a campus or company Overhead of reconstructing the requests Must intercept the packets as they fly by and reconstruct into the ordered by stream May be viewed as a violation of user privacy The user does not know the proxy lies in the path Proxy may be keeping logs of the user s requests 11

12 Anonymization Other Functions of Web Proxies Server sees requests coming from the proxy address rather than the individual user IP addresses Transcoding Converting data from one form to another E.g., reducing the size of images for cell-phone browsers Prefetching Requesting content before the user asks for it Filtering Blocking access to sites, based on URL or content 12

13 Content Providers/Consumers Content providers/consumers are interested in being able to offer/access content Efficiently Reliably Securely Inexpensively Providers deploy server farms and replicas Consumers deploy web proxies But, there is an alternative solution 13

14 3 rd Parties: Content Delivery Networks 14 Arquitecturas de red para la distribución de contenidos

15 Business Model: Content Distribution Networks (CDN) A content provider such as or Yahoo pays a CDN company (such as Akamai) to get its content to the requesting users with short delays. A CDN provides a mechanism for Replicating content on multiple servers in the Internet Providing clients with a means to determine the servers that can deliver the content fastest. 15

16 CDN Terminology Content Any publicly accessible combination of text, images, applets, frames, MP3, video, flash, virtual reality objects, etc. Content Provider Any individual, organization, or company that has content that it wishes to make available to users. Origin Server Content provider s server, where the content is first uploaded. Surrogate Server (sometimes called edge server) Content distributor s server, where the replicated content is kept. Full/Partial Site Delivery All the contents are delivered by the CDN (including HTML, images, and other objects) Only images, streaming media and other bandwidth intensive objects are delivered by the CDN. 16

17 Content Suitable for CDNS Images Streaming media Java applets Static information Content not suitable Dynamic information Personalized information CDNs and Content 17

18 Yahoo, MSNBC, CNN Cisco, Lucent, Inktomi, CacheFlow Content Provider H/W and S/W Vendor Content Distributor CDN Players Akamai, Digital Island, AT&T Hosting Provider Exodus 18

19 CDN: Distribution The CDN company places hundreds of CDN servers in Internet hosting centers. The CDN replicates its customers content in the CDN servers. Whenever, a customer updates its content (e.g., web page), the CDN redistributes the fresh content to the CDN servers. The CDN provides a mechanism so that when a user requests content, the content is provided by the CDN server that can most rapidly deliver the content to the user. This can be the closest CDN server to the user (perhaps in the same ISP as the user) or may be a CDN server with a congestion-free path to the user. 19

20 CDN CDN server in South America push content CDN server in Europe CDN: Distribution Origin server in North America push content CDN distribution node push content push content CDN server in Asia 20

21 CDN: Functional Components Distribution Service Redirection Service Accounting and Billing system 21 Arquitecturas de red para la distribución de contenidos

22 CDN: Distribution Service The content provider determines which of its objects it wants the CDN to distribute. The content provider tags and then pushes this content to a CDN node, which in turn replicates and pushes the content to all its CDN servers. When a browser in a user s host is instructed to retrieve a specific object (specified using a URL), how does the browser determine whether it should retrieve the object from the origin server or from one of the CDN servers? As an example, suppose the hostname of the content provider is Suppose the hostname of the CDN company is 22

23 CDN: Redirection Users get an html document from this could be index.html The file index.html uses a modified URL for content that has been replicated. Example: If the gif files are what has been replicated then <img src= may be modified as follows: <img src= The browser needs to resolve axyz.g.akamaitech.net hostname for replicated content. DNS is configured so that all queries about g.akamaitech.net are sent to its authoritative DNS server. This is referred to as a Akamai DNS server (authoritative DNS server) 23

24 CDN: Redirection When the Akamai DNS server receives the query, it extracts the IP address of the requesting browser. Based on the IP address and information that it has about the Internet (called a map), the IP address of an Akamai server(surrogate server) is returned to the requesting browser based on policy e.g., select the server that is the fewest hops away. The Akamai DNS server IP address is now in the cache of the local DNS server. This implies that it is not always necessary to go to the root DNS server. The TTL associated with the IP address of an Akamai server(surrogate) is relatively small. This is done for performance reasons. Akamai content distribution servers are caches 24

25 Index.html... <img src=" ages/1.gif >... CNN.com Index.html GET Client DNS query: cdn.com? CDN Redirection Authoritative DNS server for cdn.com Local DNS server 25

26 What if content is not there? CDN Redirection If the request content is not found then the surrogate will ask other surrogates within a specified region for information. If requested information is still not found or is stale, then a request is made to the original web site. 26

27 CDN Selection The tricky issue is selecting which local content server to use for a particular request Want to spread load evenly Want minimal impact if server is added or removed. In Akamai, each surrogate server sends measurement results to the Network Operations Communications Center (NOCC). Measurement results include number of active TCP connections, HTTP request arrival rate, bandwidth availability, etc This information is used by the Akamai DNS server. 27

28 Accounting Mechanism Accounting mechanisms collect and track information related to request routing, distribution and delivery. Information is gathered in real time and put into log files for each CDN component. This gets sent to the Network Operations Communications Center (NOCC). 28

29 S ISP S Backbone ISP S Hosting Center IX ISP How well do CDNs work? Backbone ISP S S S Hosting Center OS IX ISP S Backbone ISP CS CS CS CS C C CS S Site Sites C 29

30 Recall that the bottleneck links are at the edges. S ISP S Backbone ISP Even if CSs are pushed towards the edge, they are still behind the bottleneck link! S Hosting Center IX ISP How well do CDNs work? Backbone ISP S S S Hosting Center OS IX ISP S Backbone ISP CS CS CS CS C C CS S Site Sites C 30

31 Reduced latency improve TCP performance DNS round trip TCP handshake (2 round trips) Slow-start ~8 round trips to fill DSL pipe total 128K bytes Compare to 56 Kbytes for cnn.com home page Download finished before slow-start completes Total 11 round trips UMH - Berkeley University RTT is about 200 ms Measured RTT last night UMH Nearest CDN (akamai) node RTT ~ 20 ms One order of magnitude improvement in RTT!!! 11 RTTs stand up for 20x11 = 220 ms with CDN support, saving 1800 ms in downloading response time. Certainly noticeable 31

32 Tema 5: Distribución de contenidos 1. Introducción. 2. Arquitecturas. Cliente-Servidor Web proxies. Réplica de contenidos. 3. Caching y balanceado de carga 4. La red Akamai Bibliografía [FLU95] Fluckiger, Understanding networked multimedia. [SEI04] R. Seifert, Gibabit Ethernet: Technology & Applications for High-Speed Networks. [GAN04] A. Ganz, Z. Ganz and K. Wongthavarawat, Multimedia Wireless Networks: Technologies, Standards and QoS. Arquitecturas de red para la distribución de contenidos

33 Some Interesting Observations Top 1% of all documents account for 20% - 35% of proxy requests Top 10% account for 45% - 55% of requests It takes 25% to 40% of all documents to account for 70% of requests It takes 70% to 80% of all documents to account for 90% of requests 33

34 Web Caching As an example, we use the web to illustrate caching and other related issues browser browser request response request response Web Proxy cache Web server request response Web server 34

35 Web Browser Caching Web browsers have their own caches. When a page is downloaded from a site the web page is put into the browser cache. This is especially useful in those cases when the back button is pressed. If a new copy is needed then a refresh can be done. No page stays permanently in the cache. There is limited room. A replacement algorithm is needed to determine which cached page should be purged. 35

36 Client pull Web Browser Caching The server provides the content with instructions on when the client should ask for a refreshed copy of the content or if the content should be cached. Server push The server transmits page information to the screen. The browser application displays the information and leaves the connection to the server open. With an open connection, the server can continue to push updated pages for your screen to display on an ongoing basis. You can close the connection by closing the page. The server is in control Browser caches are different from proxy caches (discussed next). 36

37 Web Caching Proxy caches (also called proxy server) Intercepts HTTP requests from client Serves object if in its cache If not goes to object s home server On behalf of user, gets the object and possibly deposits in its cache before returning to user Usually deployed at edges of a network Wide area bandwidth savings, improved response time, and increased availability of static web-based objects A browser may have to be configured to point to the proxy server. Usually a proxy cache is purchased and installed by an ISP 37

38 Push-Based Approach Server tracks all proxies that have requested objects If a web page is modified, notify each proxy Notification types Indicate object has changed [invalidate] Send new version of object [update] How to decide between invalidate and updates? Pros and cons? One approach Send updates for more frequently accessed objects, invalidate for rest proxy push Web server 38

39 Advantages Push-Based Approaches Provide tight consistency [minimal stale data] Proxies can be passive Disadvantages Need to maintain state at the server Recall that HTTP is stateless Need mechanisms beyond HTTP State may need to be maintained indefinitely Not resilient to server crashes The disadvantage is the reason why push-based approaches are not used 39

40 proxy poll response Pull-Based Approaches Web server The proxy is entirely responsible for maintaining consistency The proxy periodically polls the server to see if object has changed Use if-modified-since HTTP messages: This type of message can be used by a proxy to tell a remote server to return a copy only if it has been modified. Key question: When should a proxy poll? Server-assigned Time-to-Live (TTL) values No guarantee if the object will change in the interim 40

41 Pull-Based Approach Proxy can dynamically determine the polling interval Compute based on past observations Start with a conservative poll interval Increase interval if object has not changed between two successive polls Decrease interval if object is updated between two polls Adaptive: No prior knowledge of object characteristics needed Advantages Server remains stateless Resilient to both server and proxy failures Disadvantages Weaker consistency guarantees (objects can change between two polls and proxy will contain stale data until next poll) High message overhead 41

42 A Hybrid Approach: Leases Lease: Duration of time for which server agrees to notify proxy of modification Issue lease on first request, send notification until expiry Need to renew lease upon expiry Smooth tradeoff between state and messages exchanged Zero duration polling, Infinite leases server-push Efficiency depends on the lease duration Limited use Get + lease req Client read Proxy Reply + lease Invalidate/update Server 42

43 Cooperative Caching Caching infrastructure can have multiple web proxies Proxies can be arranged in a hierarchy or other structures Proxies can cooperate with one another Answer client requests Propagate server notifications Uses a combination of HTTP and ICP (Internet Caching Protocol). ICP can be used by one cache to quickly ask another cache if it has an object. HTTP is used to actually retrieve the object. 43

44 Caching proxies do not serve all Internet users. Problems Content providers (say, Web servers) cannot rely on existence and correct implementation of caching proxies. Accounting issues with caching proxies: Example: needs to know the number of hits to the advertisements displayed on the web page. 44

45 User types or clicks on a URL DNS Query in Web Download E.g., Browser extracts the site name E.g., Browser calls gethostbyname() to learn IP address Triggers resolver code to query the local DNS server Eventually, the resolver gets a reply Resolver returns the IP address to the browser Then, the browser contacts the Web server Creates and connects socket, and sends HTTP request 45

46 Browser s cache Local Name Server User PC DNS Resolution.com.net Root (InterNIC) cnn.com DNS servers 46

47 Often a Web page has embedded objects E.g., HTML file with embedded images Each embedded object has its own URL and potentially lives on a different Web server E.g., Browser downloads embedded objects Multiple DNS Queries Usually done automatically, unless configured otherwise Requires learning the IP address for 47

48 When are DNS Queries Unnecessary? Browser is configured to use a proxy E.g., browser sends all HTTP requests through a proxy Then, the proxy takes care of issuing the DNS request Requested Web resource is locally cached E.g., cache has No need to fetch the resource, so no need to query Browser recently queried for this host name E.g., user recently visited So, the browser already called gethostbyname() and may be locally caching the resulting IP address 48

49 Directing Web Clients to Replicas Simple approach: different names www1.cnn.com, www2.cnn.com, www3.cnn.com But, this requires users to select specific replicas More elegant approach: different IP addresses Single name (e.g., multiple addresses E.g., , , , Authoritative DNS server returns many addresses And the local DNS server selects one address Authoritative server may vary the order of addresses 49

50 Clever Load Balancing Schemes Selecting the best IP address to return Based on server performance Based on geographic proximity Based on network load Example policies Round-robin scheduling to balance server load U.S. queries get one address, Europe another Tracking the current load on each of the replicas 50

51 Tema 5: Distribución de contenidos 1. Introducción. 2. Arquitecturas. Cliente-Servidor Web proxies. Réplica de contenidos. 3. Caching y balanceado de carga 4. La red Akamai Bibliografía [FLU95] Fluckiger, Understanding networked multimedia. [SEI04] R. Seifert, Gibabit Ethernet: Technology & Applications for High-Speed Networks. [GAN04] A. Ganz, Z. Ganz and K. Wongthavarawat, Multimedia Wireless Networks: Technologies, Standards and QoS. Arquitecturas de red para la distribución de contenidos

52 La red Akamai Starts its commercial service in April 1999 with Yahoo! as first customer Currently offers content delivery services to more than 1200 world s leading electronic commerce organizations. As Akamai states, between 15% to 20% of ALL Web traffic is delivered by Akamai servers. Akamai s content delivery service is based on caching and replicating content through its servers which are conveniently spread around the world. Also supports adaptive bitrate streaming HD video Akamai HD Network 52

53 Slow Problems with the Centralized Approach content must traverse multiple backbones and long distances Unreliable delivery may be prevented by congestion or backbone peering problems Not scalable usage limited by bandwidth available at master site Inferior streaming quality packet loss, congestion, and narrow pipes degrade stream quality 53

54 Multi-Site Multi-Server distributed content approach. Caches,replicates & distributes all forms of content and supports applications Monitors the Internet and routes around trouble spots Provides feedback on hit counts to content providers The Akamai Solution 54

55 Arquitecturas de red para la distribución de contenidos Advantages of the Akamai Solution Fast Content is served from locations near to end users Reliable No single point of failure Automatic fail-over Scalable Master site no longer requires massive available bandwidth 55

56 Logos 3,395 bytes Navigation Bar 9,674 bytes Total page Total Akamai Served 78% Typical Page Content 87,550 bytes 68,756 bytes Banner Ads 16,174 bytes Gif links 22,395 bytes Fresh Content 17,118 bytes Page Served by Akamai 56

57 Network Deployment Servers Networks Countries 57 Arquitecturas de red para la distribución de contenidos

58 Results Web Site Performance Typical Improvement with Akamai Arquitecturas de red para la distribución de contenidos Noon May 15 Noon May 26 Noon May 27 Noon May 16 Noon May 17 Noon May 18 Noon May 19 Noon May 20 Noon May 21 Noon May 22 Noon May 23 Noon May 24 Noon May 25 Web object delivered without Akamai Web object delivered by Akamai 58

59 Arquitecturas de red para la distribución de contenidos Over 1300 Web Sites are Now Akamaized 59

60 Akamai CDN: How it works HTML Title Page for with Embedded Objects <html> <head> <title>welcome to xyz.com!</title> </head> <body> <img src= > <img src= > <h1>welcome to our Web site!</h1> <a href= page2.html >Click here to enter</a> </body> </html> 60

61 1 5 User enters Browser requests IP address for DNS returns IP address Browser requests HTML Content provider s web server returns HTML 6 3 Downloading - before Akamai DNS Server Browser obtains IP addresses for hostnames listed in URLs of objects embedded on page Browser requests embedded objects Content provider s web server returns embedded objects 4 7 Content Provider Web server

62 User enters Browser requests IP address for DNS returns IP address 3 5 Browser requests HTML Downloading - The Akamai way DNS Server Content provider s web server returns page with Akamaized URLs Browser obtains IP address of optimal Akamai server for embedded objects Browser obtains objects from optimal Akamai server 4 Content Provider Web server 62

63 Content Delivery Using Akamai <html> <head> <title>welcome to xyz.com!</title> </head> <body> Embedded URLs are Converted to ARLs ak <img src= > <img src= > <h1>welcome to our Web site!</h1> <a href= page2.html >Click here to enter</a> </body> </html> 63

64 Akamai caching services ARL: Akamai Resource Locator Host Part Akamai Control Part Content URL /7/620/16/259bf4ed29de/ a620.g.akamai.net/ / 64

65 ARL: Akamai Resource Locator (I) Content Provider (CP) selects which content will be hosted by Akamai. Akamai provides a tool that transforms this CP URL into this ARL a620.g.akamai.net/ / 65

66 ARL: Akamai Resource Locator (II) This in turn causes the client to access Akamai s content server instead of the origin server a620.g.akamai.net/ / 66

67 ARL: Akamai Resource Locator (III) If Akamai s content server doesn t have the content in its cache, it retrieves it using this URL. a620.g.akamai.net/ / 67

68 Customer Number Type Code (I.e. CNN, Yahoo ) (different types will have different contents) a620.g.akamai.net/??? ARL Control Part /7/620/16/259fdbf4ed29de/ Content Checksum (May be used for identifying changed content. May also validate content???) / 68

69 But why such a complex domain name???? ARL Host Part a620.g.akamai.net/ /7/620/16/259fdbf4ed29de/ / 69

70 Hierarchical DNS architecture.net gtld akamai.net g.akamai.net a620.g.akamai.net CS CS ARL Host Part (II) Points to ~8 akamai.net DNS servers (random ordering, TTL order hours to days) Attempts to select ~8 g.akamai.net DNS servers near client. (Using BGP? TTL order 30 min 1 hour) Makes a very fine-grained loadbalancing decision among local content servers. TTL order 30 sec 1 min. 70

71 xyz.com DNS server Browser s cache a212.g.akamai.net 2 15 Local DNS 3 xyz.com? DNS Resolution.com.net Root DNS (InterNIC) Akamai High-Level DNS Servers g.akamai.net? a212.g.akamai.net? TTL: 30 Akamai Low-Level DNS Servers 14 User PC User DNS requests for Akamai.net? 8 71

72 Lets look at a study about CDNs performance Zhang, Krishnamurthy and Wills AT&T Labs Traces taken in Sept and Jan Compared CDNs with each other Compared CDNs against non-cdn 72

73 Selected a bunch of CDNs Akamai, Speedera, Digital Island Note, most of these gone now! Methodology Selected a number of non-cdn sites for which good performance could be expected U.S. and international origin U.S.: Amazon, Bloomberg, CNN, ESPN, MTV, NASA, Playboy, Sony, Yahoo Selected a set of images of comparable size for each CDN and non-cdn site Compare apples to apples Downloaded images from 24 NIMI machines 73

74 Response Time Results (II) Including DNS Lookup Time 74 Arquitecturas de red para la distribución de contenidos Cumulative Probability

75 Response Time Results (II) Including DNS Lookup Time About one second Arquitecturas de red para la distribución de contenidos Cumulative Probability Author conclusion: CDNs generally provide much shorter download time. 75

76 Other findings of study Each CDN performed best for at least one (NIMI) client Why? Because of proximity? The best origin sites were better than the worst CDNs CDNs with more servers don t necessarily perform better Note that they don t know load on servers HTTP 1.1 improvements (parallel download, pipelined download) help a lot Even more so for origin (non-cdn) cases Note not all origin sites implement pipelining 76

77 Keynote Systems A Performance Analysis of 40 e-business Web Sites Doing measurements since 1997 (All from one location, near as I can tell) Latest measurement January 2001 Another study 77

78 Historical trend: Clear improvement 78 Arquitecturas de red para la distribución de contenidos

79 Performance breakdown Basically says that smaller content leads to shorter download times (duh!) Average content size 12K bytes Average content size 44K bytes Average content size 99K bytes 79

80 Effect of CDN Note: non-cdns can work well (CDN not always better) 80 Arquitecturas de red para la distribución de contenidos

Reliable Distributed Systems

Reliable Distributed Systems Reliable Distributed ystems A glimpse into the world of ontent Distribution Networks Based on a slide set developed by Prof. Paul Francis ontent Routing Principle (a.k.a. ontent Distribution Network) enter

More information

CSC2231: Akamai. http://www.cs.toronto.edu/~stefan/courses/csc2231/05au. Stefan Saroiu Department of Computer Science University of Toronto

CSC2231: Akamai. http://www.cs.toronto.edu/~stefan/courses/csc2231/05au. Stefan Saroiu Department of Computer Science University of Toronto CSC2231: Akamai http://www.cs.toronto.edu/~stefan/courses/csc2231/05au Stefan Saroiu Department of Computer Science University of Toronto Administrivia Project proposals due today!!! No lecture on Monday:

More information

How To Understand The Power Of A Content Delivery Network (Cdn)

How To Understand The Power Of A Content Delivery Network (Cdn) Overview 5-44 5-44 Computer Networking 5-64 Lecture 8: Delivering Content Content Delivery Networks Peter Steenkiste Fall 04 www.cs.cmu.edu/~prs/5-44-f4 Web Consistent hashing Peer-to-peer CDN Motivation

More information

Web Caching and CDNs. Aditya Akella

Web Caching and CDNs. Aditya Akella Web Caching and CDNs Aditya Akella 1 Where can bottlenecks occur? First mile: client to its ISPs Last mile: server to its ISP Server: compute/memory limitations ISP interconnections/peerings: congestion

More information

DATA COMMUNICATOIN NETWORKING

DATA COMMUNICATOIN NETWORKING DATA COMMUNICATOIN NETWORKING Instructor: Ouldooz Baghban Karimi Course Book: Computer Networking, A Top-Down Approach, Kurose, Ross Slides: - Course book Slides - Slides from Princeton University COS461

More information

Measuring the Web: Part I - - Content Delivery Networks. Prof. Anja Feldmann, Ph.D. Dr. Ramin Khalili Georgios Smaragdakis, PhD

Measuring the Web: Part I - - Content Delivery Networks. Prof. Anja Feldmann, Ph.D. Dr. Ramin Khalili Georgios Smaragdakis, PhD Measuring the Web: Part I - - Content Delivery Networks Prof. Anja Feldmann, Ph.D. Dr. Ramin Khalili Georgios Smaragdakis, PhD Acknowledgement Material presented in these slides is borrowed from presentajons

More information

Content Delivery Networks (CDN) Dr. Yingwu Zhu

Content Delivery Networks (CDN) Dr. Yingwu Zhu Content Delivery Networks (CDN) Dr. Yingwu Zhu Web Cache Architecure Local ISP cache cdn Reverse Reverse Proxy Reverse Proxy Reverse Proxy Proxy L4 Switch Content Content Content Server Content Server

More information

Content Distribu-on Networks (CDNs)

Content Distribu-on Networks (CDNs) Content Distribu-on Networks (CDNs) Jennifer Rexford COS 461: Computer Networks Lectures: MW 10-10:0am in Architecture N101 hjp://www.cs.princeton.edu/courses/archive/spr12/cos461/ Second Half of the Course

More information

How To Test Performance Of A Cdn Server

How To Test Performance Of A Cdn Server On the Use and Performance of Content Distribution Networks Yin Zhang Joint work with Balachander Krishnamurthy and Craig Wills AT&T Labs Research, WPI {yzhang,bala}@research.att.com, cew@cs.wpi.edu ACM

More information

Internet Content Distribution

Internet Content Distribution Internet Content Distribution Chapter 4: Content Distribution Networks (TUD Student Use Only) Chapter Outline Basics of content distribution networks (CDN) Why CDN? How do they work? Client redirection

More information

Overlay Networks. Slides adopted from Prof. Böszörményi, Distributed Systems, Summer 2004.

Overlay Networks. Slides adopted from Prof. Böszörményi, Distributed Systems, Summer 2004. Overlay Networks An overlay is a logical network on top of the physical network Routing Overlays The simplest kind of overlay Virtual Private Networks (VPN), supported by the routers If no router support

More information

Internet Content Distribution

Internet Content Distribution Internet Content Distribution Chapter 2: Server-Side Techniques (TUD Student Use Only) Chapter Outline Server-side techniques for content distribution Goals Mirrors Server farms Surrogates DNS load balancing

More information

CDN and Traffic-structure

CDN and Traffic-structure CDN and Traffic-structure Outline Basics CDN Traffic Analysis 2 Outline Basics CDN Building Blocks Services Evolution Traffic Analysis 3 A Centralized Web! Slow content must traverse multiple backbones

More information

Request Routing, Load-Balancing and Fault- Tolerance Solution - MediaDNS

Request Routing, Load-Balancing and Fault- Tolerance Solution - MediaDNS White paper Request Routing, Load-Balancing and Fault- Tolerance Solution - MediaDNS June 2001 Response in Global Environment Simply by connecting to the Internet, local businesses transform themselves

More information

Communications Software. CSE 123b. CSE 123b. Spring 2003. Lecture 13: Load Balancing/Content Distribution. Networks (plus some other applications)

Communications Software. CSE 123b. CSE 123b. Spring 2003. Lecture 13: Load Balancing/Content Distribution. Networks (plus some other applications) CSE 123b CSE 123b Communications Software Spring 2003 Lecture 13: Load Balancing/Content Distribution Networks (plus some other applications) Stefan Savage Some slides courtesy Srini Seshan Today s class

More information

Advanced Networking Technologies

Advanced Networking Technologies Advanced Networking Technologies Chapter 14 Navigating Content Networks (Acknowledgement: These slides have been prepared by Dr.-Ing. Markus Hofmann) Advanced Networking (SS 15): 14 Navigating Content

More information

ICP. Cache Hierarchies. Squid. Squid Cache ICP Use. Squid. Squid

ICP. Cache Hierarchies. Squid. Squid Cache ICP Use. Squid. Squid Caching & CDN s 15-44: Computer Networking L-21: Caching and CDNs HTTP APIs Assigned reading [FCAB9] Summary Cache: A Scalable Wide- Area Cache Sharing Protocol [Cla00] Freenet: A Distributed Anonymous

More information

SiteCelerate white paper

SiteCelerate white paper SiteCelerate white paper Arahe Solutions SITECELERATE OVERVIEW As enterprises increases their investment in Web applications, Portal and websites and as usage of these applications increase, performance

More information

Distributed Systems. 23. Content Delivery Networks (CDN) Paul Krzyzanowski. Rutgers University. Fall 2015

Distributed Systems. 23. Content Delivery Networks (CDN) Paul Krzyzanowski. Rutgers University. Fall 2015 Distributed Systems 23. Content Delivery Networks (CDN) Paul Krzyzanowski Rutgers University Fall 2015 November 17, 2015 2014-2015 Paul Krzyzanowski 1 Motivation Serving web content from one location presents

More information

Distributed Systems 19. Content Delivery Networks (CDN) Paul Krzyzanowski pxk@cs.rutgers.edu

Distributed Systems 19. Content Delivery Networks (CDN) Paul Krzyzanowski pxk@cs.rutgers.edu Distributed Systems 19. Content Delivery Networks (CDN) Paul Krzyzanowski pxk@cs.rutgers.edu 1 Motivation Serving web content from one location presents problems Scalability Reliability Performance Flash

More information

Distributed Systems. 25. Content Delivery Networks (CDN) 2014 Paul Krzyzanowski. Rutgers University. Fall 2014

Distributed Systems. 25. Content Delivery Networks (CDN) 2014 Paul Krzyzanowski. Rutgers University. Fall 2014 Distributed Systems 25. Content Delivery Networks (CDN) Paul Krzyzanowski Rutgers University Fall 2014 November 16, 2014 2014 Paul Krzyzanowski 1 Motivation Serving web content from one location presents

More information

Distributed Systems. 24. Content Delivery Networks (CDN) 2013 Paul Krzyzanowski. Rutgers University. Fall 2013

Distributed Systems. 24. Content Delivery Networks (CDN) 2013 Paul Krzyzanowski. Rutgers University. Fall 2013 Distributed Systems 24. Content Delivery Networks (CDN) Paul Krzyzanowski Rutgers University Fall 2013 November 27, 2013 2013 Paul Krzyzanowski 1 Motivation Serving web content from one location presents

More information

Global Server Load Balancing

Global Server Load Balancing White Paper Overview Many enterprises attempt to scale Web and network capacity by deploying additional servers and increased infrastructure at a single location, but centralized architectures are subject

More information

Lecture 3: Scaling by Load Balancing 1. Comments on reviews i. 2. Topic 1: Scalability a. QUESTION: What are problems? i. These papers look at

Lecture 3: Scaling by Load Balancing 1. Comments on reviews i. 2. Topic 1: Scalability a. QUESTION: What are problems? i. These papers look at Lecture 3: Scaling by Load Balancing 1. Comments on reviews i. 2. Topic 1: Scalability a. QUESTION: What are problems? i. These papers look at distributing load b. QUESTION: What is the context? i. How

More information

High volume Internet data centers. MPLS-based Request Routing. Current dispatcher technology. MPLS-based architecture

High volume Internet data centers. MPLS-based Request Routing. Current dispatcher technology. MPLS-based architecture MPLS-based Request Routing High volume Internet data centers MPLS-based Request Routing Arup Acharya, Anees Shaikh, Renu Tewari, Dinesh Verma IBM TJ Watson Research Center Web server cluster + front-end

More information

Indirection. science can be solved by adding another level of indirection" -- Butler Lampson. "Every problem in computer

Indirection. science can be solved by adding another level of indirection -- Butler Lampson. Every problem in computer Indirection Indirection: rather than reference an entity directly, reference it ( indirectly ) via another entity, which in turn can or will access the original entity A x B "Every problem in computer

More information

Content Delivery Networks

Content Delivery Networks Content Delivery Networks Terena 2000 ftp://ftpeng.cisco.com/sgai/t2000cdn.pdf Silvano Gai Cisco Systems, USA Politecnico di Torino, IT sgai@cisco.com Terena 2000 1 Agenda What are Content Delivery Networks?

More information

Overview. Tor Circuit Setup (1) Tor Anonymity Network

Overview. Tor Circuit Setup (1) Tor Anonymity Network 8-345: Introduction to Telecommunication Networks Lectures 8: Delivering Content Web, Peer-Peer, CDNs Peter Steenkiste Spring 05 www.cs.cmu.edu/~prs/nets-ece Web Peer-to-peer Motivation Architectures TOR

More information

Content Delivery Networks. Shaxun Chen April 21, 2009

Content Delivery Networks. Shaxun Chen April 21, 2009 Content Delivery Networks Shaxun Chen April 21, 2009 Outline Introduction to CDN An Industry Example: Akamai A Research Example: CDN over Mobile Networks Conclusion Outline Introduction to CDN An Industry

More information

1. Comments on reviews a. Need to avoid just summarizing web page asks you for:

1. Comments on reviews a. Need to avoid just summarizing web page asks you for: 1. Comments on reviews a. Need to avoid just summarizing web page asks you for: i. A one or two sentence summary of the paper ii. A description of the problem they were trying to solve iii. A summary of

More information

The Domain Name Service, Etc. Jeff Chase Duke University, Department of Computer Science CPS 212: Distributed Information Systems

The Domain Name Service, Etc. Jeff Chase Duke University, Department of Computer Science CPS 212: Distributed Information Systems The Domain Name Service, Etc. Jeff Chase Duke University, Department of Computer Science CPS 212: Distributed Information Systems Today 1. Domain Name Service (DNS) illustrates: issues and structure for

More information

EECS 489 Winter 2010 Midterm Exam

EECS 489 Winter 2010 Midterm Exam EECS 489 Winter 2010 Midterm Exam Name: This is an open-book, open-resources exam. Explain or show your work for each question. Your grade will be severely deducted if you don t show your work, even if

More information

Experimentation with the YouTube Content Delivery Network (CDN)

Experimentation with the YouTube Content Delivery Network (CDN) Experimentation with the YouTube Content Delivery Network (CDN) Siddharth Rao Department of Computer Science Aalto University, Finland siddharth.rao@aalto.fi Sami Karvonen Department of Computer Science

More information

The old Internet. Software in the Network: Outline. Traditional Design. 1) Basic Caching. The Arrival of Software (in the network)

The old Internet. Software in the Network: Outline. Traditional Design. 1) Basic Caching. The Arrival of Software (in the network) The old Software in the Network: What Happened and Where to Go Prof. Eric A. Brewer UC Berkeley Inktomi Corporation Local networks with local names and switches IP creates global namespace and links the

More information

The Web History (I) The Web History (II)

The Web History (I) The Web History (II) Goals of Today s Lecture EE 122: The World Wide Web Ion Stoica TAs: Junda Liu, DK Moon, David Zats http://inst.eecs.berkeley.edu/~ee122/ (Materials with thanks to Vern Paxson, Jennifer Rexford, and colleagues

More information

Department of Computer Science Institute for System Architecture, Chair for Computer Networks. Caching, Content Distribution and Load Balancing

Department of Computer Science Institute for System Architecture, Chair for Computer Networks. Caching, Content Distribution and Load Balancing Department of Computer Science Institute for System Architecture, Chair for Computer Networks Caching, Content Distribution and Load Balancing Motivation Which optimization means do exist? Where should

More information

GLOBAL SERVER LOAD BALANCING WITH SERVERIRON

GLOBAL SERVER LOAD BALANCING WITH SERVERIRON APPLICATION NOTE GLOBAL SERVER LOAD BALANCING WITH SERVERIRON Growing Global Simply by connecting to the Internet, local businesses transform themselves into global ebusiness enterprises that span the

More information

From Internet Data Centers to Data Centers in the Cloud

From Internet Data Centers to Data Centers in the Cloud From Internet Data Centers to Data Centers in the Cloud This case study is a short extract from a keynote address given to the Doctoral Symposium at Middleware 2009 by Lucy Cherkasova of HP Research Labs

More information

Web Application Hosting Cloud Architecture

Web Application Hosting Cloud Architecture Web Application Hosting Cloud Architecture Executive Overview This paper describes vendor neutral best practices for hosting web applications using cloud computing. The architectural elements described

More information

AKAMAI WHITE PAPER. Delivering Dynamic Web Content in Cloud Computing Applications: HTTP resource download performance modelling

AKAMAI WHITE PAPER. Delivering Dynamic Web Content in Cloud Computing Applications: HTTP resource download performance modelling AKAMAI WHITE PAPER Delivering Dynamic Web Content in Cloud Computing Applications: HTTP resource download performance modelling Delivering Dynamic Web Content in Cloud Computing Applications 1 Overview

More information

DNS, CDNs Weds March 17 2010 Lecture 13. What is the relationship between a domain name (e.g., youtube.com) and an IP address?

DNS, CDNs Weds March 17 2010 Lecture 13. What is the relationship between a domain name (e.g., youtube.com) and an IP address? DNS, CDNs Weds March 17 2010 Lecture 13 DNS What is the relationship between a domain name (e.g., youtube.com) and an IP address? DNS is the system that determines this mapping. Basic idea: You contact

More information

A Precise and Efficient Evaluation of the Proximity between Web Clients

A Precise and Efficient Evaluation of the Proximity between Web Clients A Precise and Efficient Evaluation of the Proximity between Web Clients and their Local DNS Servers Zhuoqing Morley Mao, Charles D. Cranor, Fred Douglis, Michael Rabinovich, Oliver Spatscheck, and Jia

More information

FortiBalancer: Global Server Load Balancing WHITE PAPER

FortiBalancer: Global Server Load Balancing WHITE PAPER FortiBalancer: Global Server Load Balancing WHITE PAPER FORTINET FortiBalancer: Global Server Load Balancing PAGE 2 Introduction Scalability, high availability and performance are critical to the success

More information

Load Balancing Web Applications

Load Balancing Web Applications Mon Jan 26 2004 18:14:15 America/New_York Published on The O'Reilly Network (http://www.oreillynet.com/) http://www.oreillynet.com/pub/a/onjava/2001/09/26/load.html See this if you're having trouble printing

More information

Global Server Load Balancing

Global Server Load Balancing White Paper Global Server Load Balancing APV Series Application Delivery Controllers May 2011 Global Server Load Balancing Access. Security. Delivery. Introduction Scalability, high availability and performance

More information

Computer Networks - CS132/EECS148 - Spring 2013 ------------------------------------------------------------------------------

Computer Networks - CS132/EECS148 - Spring 2013 ------------------------------------------------------------------------------ Computer Networks - CS132/EECS148 - Spring 2013 Instructor: Karim El Defrawy Assignment 2 Deadline : April 25 th 9:30pm (hard and soft copies required) ------------------------------------------------------------------------------

More information

The Value of Content Distribution Networks Mike Axelrod, Google axelrod@google.com. Google Public

The Value of Content Distribution Networks Mike Axelrod, Google axelrod@google.com. Google Public The Value of Content Distribution Networks Mike Axelrod, Google axelrod@google.com Introduction Well understood facts: o Fast is better than slow but it costs more to be fast o Network has to be fast and

More information

Protocolo HTTP. Web and HTTP. HTTP overview. HTTP overview

Protocolo HTTP. Web and HTTP. HTTP overview. HTTP overview Web and HTTP Protocolo HTTP Web page consists of objects Object can be HTML file, JPEG image, Java applet, audio file, Web page consists of base HTML-file which includes several referenced objects Each

More information

Rapid IP redirection with SDN and NFV. Jeffrey Lai, Qiang Fu, Tim Moors December 9, 2015

Rapid IP redirection with SDN and NFV. Jeffrey Lai, Qiang Fu, Tim Moors December 9, 2015 Rapid IP redirection with SDN and NFV Jeffrey Lai, Qiang Fu, Tim Moors December 9, 2015 Background Enabling ISP-CDN collaboration SDN, NFV, CDN Basics Client assumptions And breaking them The problem My

More information

Meeting Worldwide Demand for your Content

Meeting Worldwide Demand for your Content Meeting Worldwide Demand for your Content Evolving to a Content Delivery Network A Lucent Technologies White Paper By L. R. Beaumont 4/25/01 Meeting Worldwide Demand for your Content White Paper Table

More information

First Midterm for ECE374 02/25/15 Solution!!

First Midterm for ECE374 02/25/15 Solution!! 1 First Midterm for ECE374 02/25/15 Solution!! Instructions: Put your name and student number on each sheet of paper! The exam is closed book. You have 90 minutes to complete the exam. Be a smart exam

More information

Intelligent Content Delivery Network (CDN) The New Generation of High-Quality Network

Intelligent Content Delivery Network (CDN) The New Generation of High-Quality Network White paper Intelligent Content Delivery Network (CDN) The New Generation of High-Quality Network July 2001 Executive Summary Rich media content like audio and video streaming over the Internet is becoming

More information

FAQs for Oracle iplanet Proxy Server 4.0

FAQs for Oracle iplanet Proxy Server 4.0 FAQs for Oracle iplanet Proxy Server 4.0 Get answers to the questions most frequently asked about Oracle iplanet Proxy Server Q: What is Oracle iplanet Proxy Server (Java System Web Proxy Server)? A: Oracle

More information

The Value of a Content Delivery Network

The Value of a Content Delivery Network September 2010 White Paper The Value of a Content Delivery Network Table of Contents Introduction... 3 Performance... 3 The Second Generation of CDNs... 6 Conclusion... 7 About NTT America... 8 Introduction

More information

Akamai CDN, IPv6 and DNS security. Christian Kaufmann Akamai Technologies DENOG 5 14 th November 2013

Akamai CDN, IPv6 and DNS security. Christian Kaufmann Akamai Technologies DENOG 5 14 th November 2013 Akamai CDN, IPv6 and DNS security Christian Kaufmann Akamai Technologies DENOG 5 14 th November 2013 Agenda Akamai Introduction Who s Akamai? Intelligent Platform & Traffic Snapshot Basic Technology Akamai

More information

COMP 361 Computer Communications Networks. Fall Semester 2003. Midterm Examination

COMP 361 Computer Communications Networks. Fall Semester 2003. Midterm Examination COMP 361 Computer Communications Networks Fall Semester 2003 Midterm Examination Date: October 23, 2003, Time 18:30pm --19:50pm Name: Student ID: Email: Instructions: 1. This is a closed book exam 2. This

More information

Measuring CDN Performance. Hooman Beheshti, VP Technology

Measuring CDN Performance. Hooman Beheshti, VP Technology Measuring CDN Performance Hooman Beheshti, VP Technology Why this matters Performance is one of the main reasons we use a CDN Seems easy to measure, but isn t Performance is an easy way to comparison shop

More information

A Guide to WAN Application Delivery for the SME Market

A Guide to WAN Application Delivery for the SME Market A Guide to WAN Application Delivery for the SME Market Worry-Proof Internet 2800 Campus Drive Suite 140 Plymouth, MN 55441 Phone (763) 694-9949 Toll Free (800) 669-6242 A Guide to WAN Application Delivery

More information

Final for ECE374 05/06/13 Solution!!

Final for ECE374 05/06/13 Solution!! 1 Final for ECE374 05/06/13 Solution!! Instructions: Put your name and student number on each sheet of paper! The exam is closed book. You have 90 minutes to complete the exam. Be a smart exam taker -

More information

high-quality steaming over the Internet

high-quality steaming over the Internet Content Delivery Networks & high-quality steaming over the Internet 27 th october 2011 2009 Level 3 Communications, LLC. All Rights Reserved. Level 3 Communications, Level 3, the red 3D brackets, the (3)

More information

Octoshape s Multicast Technology Suite:

Octoshape s Multicast Technology Suite: : The Next-Gen CDN Alternative for Large-Scale, Cost-Optimized, Global HD Streaming HQ: +45 8833 4680 USA: +1 770 578 1686 Asia: +65 81125330 www.octoshape.com Table of Contents Core Transport...4 Making

More information

The Measured Performance of Content Distribution Networks

The Measured Performance of Content Distribution Networks The Measured Performance of Content Distribution Networks Kirk L. Johnson, John F. Carr, Mark S. Day, M. Frans Kaashoek SightPath, Inc. 135 Beaver Street, Waltham, MA 02452, USA Abstract We have measured

More information

Open Issues in Content Distribution

Open Issues in Content Distribution Open Issues in Content Distribution Pablo Rodriguez Systems and Networking Department Microsoft Research, Cambridge. UK pablo@microsoft.com Rodriguez 1 The Problem The Internet has been growing very fast,

More information

Internet Firewall CSIS 4222. Packet Filtering. Internet Firewall. Examples. Spring 2011 CSIS 4222. net15 1. Routers can implement packet filtering

Internet Firewall CSIS 4222. Packet Filtering. Internet Firewall. Examples. Spring 2011 CSIS 4222. net15 1. Routers can implement packet filtering Internet Firewall CSIS 4222 A combination of hardware and software that isolates an organization s internal network from the Internet at large Ch 27: Internet Routing Ch 30: Packet filtering & firewalls

More information

Content Delivery Networks

Content Delivery Networks Content Delivery Networks Silvano Gai Cisco Systems, USA Politecnico di Torino, IT sgai@cisco.com 1 Agenda What are Content Delivery Networks? DNS based routing Server Load Balancing Content Routers Ethical

More information

A Link Load Balancing Solution for Multi-Homed Networks

A Link Load Balancing Solution for Multi-Homed Networks A Link Load Balancing Solution for Multi-Homed Networks Overview An increasing number of enterprises are using the Internet for delivering mission-critical content and applications. By maintaining only

More information

The Effect of Caches for Mobile Broadband Internet Access

The Effect of Caches for Mobile Broadband Internet Access The Effect of s for Mobile Jochen Eisl, Nokia Siemens Networks, Munich, Germany Haßlinger, Deutsche Telekom Technik,, Darmstadt, Germany IP-based content delivery: CDN & cache architecture Impact of access

More information

Results-Oriented Application Acceleration with FastView Because Every Second Counts Whitepaper

Results-Oriented Application Acceleration with FastView Because Every Second Counts Whitepaper Results-Oriented Application Acceleration with FastView Because Every Second Counts Whitepaper Table of Contents Executive Summary...3 Why Website Performance Matters...3 What Affects Website Performance...5

More information

On the Use and Performance of Content Distribution Networks

On the Use and Performance of Content Distribution Networks ACM SIGCOMM INTERNET MEASUREMENT WORKSHOP 2001 1 On the Use and Performance of Content Distribution Networks Balachander Krishnamurthy, Craig Wills, Yin Zhang Abstract Content distribution networks (CDNs)

More information

Sage 300 ERP Online. Mac Resource Guide. (Formerly Sage ERP Accpac Online) Updated June 1, 2012. Page 1

Sage 300 ERP Online. Mac Resource Guide. (Formerly Sage ERP Accpac Online) Updated June 1, 2012. Page 1 Sage 300 ERP Online (Formerly Sage ERP Accpac Online) Mac Resource Guide Updated June 1, 2012 Page 1 Table of Contents 1.0 Introduction... 3 2.0 Getting Started with Sage 300 ERP Online using a Mac....

More information

Sage ERP Accpac Online

Sage ERP Accpac Online Sage ERP Accpac Online Mac Resource Guide Thank you for choosing Sage ERP Accpac Online. This Resource Guide will provide important information and instructions on how you can get started using your Mac

More information

Front-End Performance Testing and Optimization

Front-End Performance Testing and Optimization Front-End Performance Testing and Optimization Abstract Today, web user turnaround starts from more than 3 seconds of response time. This demands performance optimization on all application levels. Client

More information

Key Components of WAN Optimization Controller Functionality

Key Components of WAN Optimization Controller Functionality Key Components of WAN Optimization Controller Functionality Introduction and Goals One of the key challenges facing IT organizations relative to application and service delivery is ensuring that the applications

More information

The Effectiveness of Request Redirection on CDN Robustness

The Effectiveness of Request Redirection on CDN Robustness The Effectiveness of Request Redirection on CDN Robustness Limin Wang, Vivek Pai and Larry Peterson Presented by: Eric Leshay Ian McBride Kai Rasmussen 1 Outline! Introduction! Redirection Strategies!

More information

Getting Started with AWS. Hosting a Static Website

Getting Started with AWS. Hosting a Static Website Getting Started with AWS Hosting a Static Website Getting Started with AWS: Hosting a Static Website Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks

More information

Alteon Global Server Load Balancing

Alteon Global Server Load Balancing Alteon Global Server Load Balancing Whitepaper GSLB Operation Overview Major Components Distributed Site Monitoring Distributed Site State Protocol Internet Topology Awareness DNS Authoritative Name Server

More information

Load Balancing. Final Network Exam LSNAT. Sommaire. How works a "traditional" NAT? Un article de Le wiki des TPs RSM.

Load Balancing. Final Network Exam LSNAT. Sommaire. How works a traditional NAT? Un article de Le wiki des TPs RSM. Load Balancing Un article de Le wiki des TPs RSM. PC Final Network Exam Sommaire 1 LSNAT 1.1 Deployement of LSNAT in a globally unique address space (LS-NAT) 1.2 Operation of LSNAT in conjunction with

More information

Building a Highly Available and Scalable Web Farm

Building a Highly Available and Scalable Web Farm Page 1 of 10 MSDN Home > MSDN Library > Deployment Rate this page: 10 users 4.9 out of 5 Building a Highly Available and Scalable Web Farm Duwamish Online Paul Johns and Aaron Ching Microsoft Developer

More information

CS514: Intermediate Course in Computer Systems

CS514: Intermediate Course in Computer Systems : Intermediate Course in Computer Systems Lecture 7: Sept. 19, 2003 Load Balancing Options Sources Lots of graphics and product description courtesy F5 website (www.f5.com) I believe F5 is market leader

More information

THE MASTER LIST OF DNS TERMINOLOGY. v 2.0

THE MASTER LIST OF DNS TERMINOLOGY. v 2.0 THE MASTER LIST OF DNS TERMINOLOGY v 2.0 DNS can be hard to understand and if you re unfamiliar with the terminology, learning more about DNS can seem as daunting as learning a new language. To help people

More information

Computer Networking LAB 2 HTTP

Computer Networking LAB 2 HTTP Computer Networking LAB 2 HTTP 1 OBJECTIVES The basic GET/response interaction HTTP message formats Retrieving large HTML files Retrieving HTML files with embedded objects HTTP authentication and security

More information

Debugging With Netalyzr

Debugging With Netalyzr Debugging With Netalyzr Christian Kreibich (ICSI), Nicholas Weaver (ICSI), Boris Nechaev (HIIT/TKK), and Vern Paxson (ICSI & UC Berkeley) 1 What Is Netalyzr?! Netalyzr is a comprehensive network measurement

More information

DNS ROUND ROBIN HIGH-AVAILABILITY LOAD SHARING

DNS ROUND ROBIN HIGH-AVAILABILITY LOAD SHARING PolyServe High-Availability Server Clustering for E-Business 918 Parker Street Berkeley, California 94710 (510) 665-2929 wwwpolyservecom Number 990903 WHITE PAPER DNS ROUND ROBIN HIGH-AVAILABILITY LOAD

More information

1 Introduction: Network Applications

1 Introduction: Network Applications 1 Introduction: Network Applications Some Network Apps E-mail Web Instant messaging Remote login P2P file sharing Multi-user network games Streaming stored video clips Internet telephone Real-time video

More information

How To Model The Content Delivery Network (Cdn) From A Content Bridge To A Cloud (Cloud)

How To Model The Content Delivery Network (Cdn) From A Content Bridge To A Cloud (Cloud) Kingston University London In network content caching contributing to the Future Internet Architecture Dissertation submitted for the Degree of Master of Science in Networking and Data Communications By

More information

Demand Routing in Network Layer for Load Balancing in Content Delivery Networks

Demand Routing in Network Layer for Load Balancing in Content Delivery Networks Demand Routing in Network Layer for Load Balancing in Content Delivery Networks # A SHRAVANI, 1 M.Tech, Computer Science Engineering E mail: sravaniathome@gmail.com # SYED ABDUL MOEED 2 Asst.Professor,

More information

BT Internet Connect Global - Annex to the General Service Schedule

BT Internet Connect Global - Annex to the General Service Schedule 1. Definitions The following definitions apply, in addition to those in the General Terms and Conditions and the General Services Schedule. ARP means Address Resolution Protocol. Border Gateway Protocol

More information

LOAD BALANCING IN WEB SERVER

LOAD BALANCING IN WEB SERVER LOAD BALANCING IN WEB SERVER Renu Tyagi 1, Shaily Chaudhary 2, Sweta Payala 3 UG, 1,2,3 Department of Information & Technology, Raj Kumar Goel Institute of Technology for Women, Gautam Buddh Technical

More information

CS101 Lecture 19: Internetworking. What You ll Learn Today

CS101 Lecture 19: Internetworking. What You ll Learn Today CS101 Lecture 19: Internetworking Internet Protocol IP Addresses Routing Domain Name Services Aaron Stevens (azs@bu.edu) 6 March 2013 What You ll Learn Today What is the Internet? What does Internet Protocol

More information

Internet Control Protocols Reading: Chapter 3

Internet Control Protocols Reading: Chapter 3 Internet Control Protocols Reading: Chapter 3 ARP - RFC 826, STD 37 DHCP - RFC 2131 ICMP - RFC 0792, STD 05 1 Goals of Today s Lecture Bootstrapping an end host Learning its own configuration parameters

More information

Acceleration Systems Performance Assessment Tool (PAT) User Guide v 2.1

Acceleration Systems Performance Assessment Tool (PAT) User Guide v 2.1 Acceleration Systems Performance Assessment Tool (PAT) User Guide v 2.1 December 2015 Table of Contents 1 PAT... 1 1.1 Network Quality Report (Pre-test Evaluation)... 1 1.1.1 Raw MTR Data... 4 2 Executing

More information

Teridion. Rethinking Network Performance. The Internet. Lightning Fast. Technical White Paper July, 2015 www.teridion.com

Teridion. Rethinking Network Performance. The Internet. Lightning Fast. Technical White Paper July, 2015 www.teridion.com Teridion The Internet. Lightning Fast. Rethinking Network Performance Technical White Paper July, 2015 www.teridion.com Executive summary Online services face the growing dual challenge of supporting many

More information

CDN Brokering. Content Distribution Internetworking

CDN Brokering. Content Distribution Internetworking CDN Brokering Alex Biliris, Chuck Cranor, Fred Douglis, Michael Rabinovich, Sandeep Sibal, Oliver Spatscheck, and Walter Sturm AT&T Labs--Research March 12, 2001 Content Distribution Internetworking Definition:

More information

Testing & Assuring Mobile End User Experience Before Production. Neotys

Testing & Assuring Mobile End User Experience Before Production. Neotys Testing & Assuring Mobile End User Experience Before Production Neotys Agenda Introduction The challenges Best practices NeoLoad mobile capabilities Mobile devices are used more and more At Home In 2014,

More information

How To Load Balance On A Bgg On A Network With A Network (Networking) On A Pc Or Ipa On A Computer Or Ipad On A 2G Network On A Microsoft Ipa (Netnet) On An Ip

How To Load Balance On A Bgg On A Network With A Network (Networking) On A Pc Or Ipa On A Computer Or Ipad On A 2G Network On A Microsoft Ipa (Netnet) On An Ip Globally Distributed Content (Using BGP to Take Over the World) Horms (Simon Horman) horms@vergenet.net November 2001 http://supersparrow.org/ 1 Introduction Electronic content is becoming increasingly

More information

networks Live & On-Demand Video Delivery without Interruption Wireless optimization the unsolved mystery WHITE PAPER

networks Live & On-Demand Video Delivery without Interruption Wireless optimization the unsolved mystery WHITE PAPER Live & On-Demand Video Delivery without Interruption Wireless optimization the unsolved mystery - Improving the way the world connects - WHITE PAPER Live On-Demand Video Streaming without Interruption

More information

TCP over Multi-hop Wireless Networks * Overview of Transmission Control Protocol / Internet Protocol (TCP/IP) Internet Protocol (IP)

TCP over Multi-hop Wireless Networks * Overview of Transmission Control Protocol / Internet Protocol (TCP/IP) Internet Protocol (IP) TCP over Multi-hop Wireless Networks * Overview of Transmission Control Protocol / Internet Protocol (TCP/IP) *Slides adapted from a talk given by Nitin Vaidya. Wireless Computing and Network Systems Page

More information

COMP 631: COMPUTER NETWORKS. How to distribute content without requiring centralized, heavy-duty servers? Peer-to-peer content distribution

COMP 631: COMPUTER NETWORKS. How to distribute content without requiring centralized, heavy-duty servers? Peer-to-peer content distribution Content Distribution How to distribute content without requiring centralized, heavy-duty servers? Examples: Ø Bittorrent Peer-to-peer content distribution Ø Akamai Content distribution service 20 Bottlenecks

More information

Traffic delivery evolution in the Internet ENOG 4 Moscow 23 rd October 2012

Traffic delivery evolution in the Internet ENOG 4 Moscow 23 rd October 2012 Traffic delivery evolution in the Internet ENOG 4 Moscow 23 rd October 2012 January 29th, 2008 Christian Kaufmann Director Network Architecture Akamai Technologies, Inc. way-back machine Web 1998 way-back

More information