CDNs in High-Performance System Design

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024

Комментарии • 14

  • @tryexponent
    @tryexponent  7 месяцев назад

    Make sure you're interview-ready with Exponent's system design interview prep course: www.tryexponent.com/courses/s...

  • @technogeek8306
    @technogeek8306 Год назад +52

    If we are designing a product listing page then CDN will fit for product related details including images videos and reviews but product pricing and stock availability should be excluded in such cases.

  • @quiccloud
    @quiccloud 6 месяцев назад +2

    Really nice comparison between push and pull CDNs, like ours, with a good explanation on advantages in and disadvantages. Thanks

  • @sumeetmultani1
    @sumeetmultani1 Год назад +2

    All the images, css,JavaScript and html of the page will be cached by CDN. Primarily the use case is a classic fit for CDN since there are global users who would to browse the page within ms rather than seconds. Lastly CDNs would not cache payment pages and specific user content such as personal user data due to regulations.

  • @PremSai-wd3co
    @PremSai-wd3co 9 дней назад

    What is the answer of the last question is it between the load balancer and product listing service

  • @deekshaprusty
    @deekshaprusty Год назад +2

    Is it right ? - After the product listing service and parallel to the DB.
    Is distributed DB considered CDN?

    • @tryexponent
      @tryexponent  Год назад +13

      Hey Deeksha!
      A distributed database and a content delivery network (CDN) are two different things.
      A distributed database is a database that is spread across multiple computers or nodes in a network, allowing for data to be stored and processed in a distributed manner. Distributed databases are often used to improve performance, availability, and scalability of data storage and processing.
      A content delivery network (CDN), on the other hand, is a system of distributed servers that delivers web content (such as images, videos, and static files) to users based on their geographic location, network proximity, and other factors. CDNs are designed to reduce the latency and improve the delivery speed of web content, especially for users located far away from the origin server.
      While both distributed databases and CDNs involve distributing data across multiple nodes, their purposes and architectures are fundamentally different. A distributed database is primarily used for storing and processing data, while a CDN is primarily used for delivering web content.

  • @satish1012
    @satish1012 3 месяца назад

    Can you explain what is Dynamic Content Delivery
    I have question regarding CDN.
    CDN associated with only static content right? Like a HTML File, Audio Files, Video Files Etc where user can access these file from their nearest location
    Can CDN be also be applicable for dynamic content? For example Status of Air Craft being watched from India when it is flying in USA and assume that the data center in USA
    As per my understanding, for dynamic content there is no concept of CDN right? In this example the data should come from the DB server from USA . Basically wherever you watch in the world , the status of the flight across the world it has to come from USA .

  • @prashantchamoli7263
    @prashantchamoli7263 21 день назад

    Thanks for the amazing video
    I have one question : Although we have stored our static content in CDN server, the backend call to fetch the data (REST APIs) would still go to the origin server right? So how does it benefit us in that case?

    • @tryexponent
      @tryexponent  16 дней назад

      Thanks for the question!
      While CDNs primarily cache and serve static content like images, stylesheets, and scripts, the backend calls to fetch dynamic data (via REST APIs) do typically still go to the origin server. The main benefit of CDNs in this context is reducing the load and latency for serving static resources, which allows the origin server to focus on handling dynamic requests. This improves the overall performance and scalability of your application, as static content is offloaded, freeing up resources on the origin server for faster API response times.

  • @rajdave7357
    @rajdave7357 Год назад

    Thanks a lot
    Wow
    We want more such videos ❤❤❤❤

  • @siddharthpandey835
    @siddharthpandey835 6 месяцев назад

    awesome!!

  • @i_am_dantheman
    @i_am_dantheman Год назад +2

    Nice stuff