Paste bin system design | Software architecture for paste bin

Поделиться
HTML-код
  • Опубликовано: 2 июн 2024
  • Pastebin is a service that allows users to share text over the internet by generating a unique URL. In this video, lets learn how to design paste bin
    Scale correction: its 13Million/24/3600 requests per second
    System design: imgur.com/a/15E9eNa
    #pastebinsystemdesign #pastebin #systemdesign

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

  • @mauvezebra
    @mauvezebra 2 года назад +3

    Hi Narendra. I listened to your system design videos and practised. Now I got the job I was trying to get. Thank you so much!

  • @pubamx
    @pubamx 2 года назад +1

    Hi Naren, this is one of the greatest system design overviews for this particular problem. A good approach in both LLD and HLG well justified and explained each trade-offs of the implementation. Thank youl

  • @rbragdish
    @rbragdish 3 года назад +1

    Hands down the best channel I've found for system design. Kudos bro!

  • @carlosluque4753
    @carlosluque4753 9 месяцев назад +2

    I loved this design! thanks a lot! I'd like to add one point not covered in the capacity estimation. based on the input, users can add up to 10Mb per paste. 100k per day, deriving in 1000GB per day.
    I think it's good to mention that we can apply compression (manually or let the db do it) to the text that way we can save up to ~60% of the initial calculation for storage, reducing costs quite a lot

  • @JuanHernandezV
    @JuanHernandezV 3 года назад +1

    Very good approach. Thank you. Wish me luck in my systems design interview today!

  • @triv984
    @triv984 3 года назад +12

    Thanks Narian for great videos! I have a question regarding DKGS. Isn't it an overhead? I mean that key generation formula (timestamp+nodeid+counter) seems to be already enough to cover uniqueness requirement. And even if there will be collision -- is it still worse to call DKGS service instead of DB directly? Thanks!

  • @willinton06
    @willinton06 3 года назад +1

    Whenever I get a job I'm definetly joining your channel

  • @screen189
    @screen189 3 года назад

    Hi Narendra - Thanks for making these system design videos. Its useful for all engineers irrespective of whether they are interviewing or not. Please make a detailed video on following topics - a) System design for Heatmap. Let's say Heatmap of Uber drivers. b) Zookeeper functionality c) DevOps best practices or DevOps series.

  • @shubhamlodhi7641
    @shubhamlodhi7641 4 года назад

    This guy is truly a genius. Keep doing good work

  • @yodali7999
    @yodali7999 3 года назад

    very underrated design video that covers most use cases, thx a lot

  • @venkateswarank1145
    @venkateswarank1145 4 года назад +3

    Happy happieee birthday champ 😉
    Your dedication of posting video even on your bday is just amazing.
    Looking forward to learn more from you 😊

  • @cornorange7622
    @cornorange7622 3 года назад

    just want you know your videos are great, appreciate your efforts!

  • @MultiPriya28
    @MultiPriya28 4 года назад +34

    Please make a video on github design! :)

    • @rohangarg5473
      @rohangarg5473 4 года назад +1

      yes make a video on this.

    • @ankurkumarraj
      @ankurkumarraj 3 года назад

      yes Tech Dummies please make a video on this.

    • @designvoodoo
      @designvoodoo 3 года назад

      I would love to watch this!

  • @iancarbaugh4081
    @iancarbaugh4081 3 года назад

    Thank you, Narendra, for your exceptional content! I learned a lot from you.

  • @brijchavda
    @brijchavda 3 года назад +16

    Couple of things. 1. Using serverless will not give you predictable SLA. 2) Cleanup service need to delete the entry from cache also. else, expired paste will still be accessible. 3.) rather than DKGS , you can use UUID (it takes double size 128bit) but u will not need redis and DKGS

    • @kartikvaidyanathan1237
      @kartikvaidyanathan1237 Год назад +4

      If you use UUID inside the writepaste lambdas or containers then there is a chance of duplication as there are multiple instances. I don’t think that will work well.

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

      @@kartikvaidyanathan1237 A collision is when the same UUID is generated more than one time and is assigned to different objects. Even though it is possible, the 128-bit value is extremely unlikely to be repeated by any other UUID. The possibility is close enough to zero, for all practical purposes, that it is negligible.

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

      @@rabindrapatra7151 yes but what is stopping from multiple lambdas from generating the same UUID. I understand if the Id gen service is centralised and UUID comes from there. But my understanding is each lambda internally generates a UUID

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

      Cleanup service need to delete the entry from cache also. else, expired paste will still be accessible -> Can't we add into cache with TTL. That should automatically solve the issue

    • @taniksusu4034
      @taniksusu4034 5 дней назад +1

      @@TheCosmique11 Acc to wikipedia - the number of random version-4 UUIDs which need to be generated in order to have a 50% probability of at least one collision is 2.71 quintillion.
      en.wikipedia.org/wiki/Universally_unique_identifier#Random_UUID_probability_of_duplicates:~:text=22%5D%5B23%5D-,Collisions,-%5Bedit%5D

  • @GauravJain108
    @GauravJain108 3 года назад +1

    Really cool idea to show the preview of 100KB while fetching data from S3.

  • @TheRealAndOnlyAsr
    @TheRealAndOnlyAsr 3 года назад

    Thanks! Your videos are always top quality

  • @lnit7411
    @lnit7411 3 года назад

    sir, you are doing a great job, please don't stop making such videos

  • @santoshreddy9628
    @santoshreddy9628 4 года назад

    Very nicely explained thank you.

  • @xxbighotshotxx
    @xxbighotshotxx 2 года назад

    Great work. I really appreciate the explanation. It was really well done.

  • @rahulsharma5030
    @rahulsharma5030 3 года назад +2

    hey,
    thanks for tutorial.This channel is really awesome.
    I have a doubts:-
    1.When you are mentioning data base comparision @13:00(approx). Why did you choose partitioning in RDMS.I think partitioning would be easy in NO SQL world as some db provide inbuild solution for this and RDMS is often easy to scale veritcally instead horizontally. Isnt it better to have NOSQL if we want to scale later?
    2.And if we use partitioning .the way u mentioned that if one db is filled ,we will go other. Shouldnt we be using consistent hashing in this case instead of one range filled, go to other. Range based partitioning has multiple db nodes running parallel each handling different data.
    Please let me know you thoughts

  • @parthsharma8269
    @parthsharma8269 3 года назад +3

    If anyone is thinking how 64 comes up at 20:40, that is because [A-Z,a-z,0-9] sums up to [26+26+20]=62 and special characters like '+' and '/' adds up to 64, Base64 encoding

  • @meghadave9363
    @meghadave9363 Месяц назад

    hi. some really important points for decision making. thanks

  • @anshulgolu123
    @anshulgolu123 3 года назад +3

    Your video is great !!
    Had one small doubt though below:
    How do you explain how can 10 character key be used to generate 100GB?
    Ideally total storage for 10 characters can be (62^10) * 10 bytes [assuming a character takes 1 byte] which is a lot more than 100GB
    If we assume we are using 5 character key we will get (62^5)*5 bytes which is approx 34GB

  • @jh0720
    @jh0720 4 года назад

    Your videos keeping getting better

  • @ghanshyam014
    @ghanshyam014 3 года назад

    Happy birthday 🎂 Dear bhaiya😘
    Wishing you a very happy and prosperous birthday with full of love, joy and happiness...🌷🌺🏵️🌸💐
    .....
    .....
    It's belated but yeah.....🥰
    🌸🌿 Stay blessed , safe and protected always ❣️🌿🌸

  • @totolipton
    @totolipton 4 года назад +5

    Hi I think the paste table needs a 'usr_id' field so you can find out who created the paste.

  • @Tamer_Ali
    @Tamer_Ali 3 года назад

    I love your videos. you taught me a lot.
    I hope you make a video of e-learning system design.

  • @Rockersvirtue
    @Rockersvirtue 3 года назад

    Great video. Thanks for your effort. One doubt though, How to allow custom string provided by user? I understand that we can store mapping between key and custom string for each user. However, how to do for anonymous user? Wouldn't we be overwriting the paste or exposing name of paste in such case?

  • @Akashkumar-md6rg
    @Akashkumar-md6rg 3 года назад

    Simply awesome!!😎😎

  • @ADG1025
    @ADG1025 2 года назад

    Thanks for the video. What about adding a CDN between the end user and read request? This would cache and offload all large portion of the read requests from ever hitting the API. Only a small percentage of pages would need to hit the origin. You could introduce a queue for expiring cached pages upon edit or deletion.

  • @shreyas23100252
    @shreyas23100252 3 года назад

    Hey narendra, what shouldbe the initial approach on any system design. Ex: I can we have split the requirement into functional requirement and non functional.
    Also what are videos which we need to go thru first to get the fundamentals and to full scale design.
    Any recommendation on materials to understand the basic module of SD.

  • @vijitail1979
    @vijitail1979 4 года назад

    Great explanation!!

  • @user-oy4kf5wr8l
    @user-oy4kf5wr8l 3 года назад +1

    This is super good bro...Great Thx for ur great work! Could u do a video about calculating those normally seen volumnes, eg, 1 video takes how much bytes etc. Thx :D

  • @kumarc4853
    @kumarc4853 3 года назад

    Thank you for great content :)

  • @random66787
    @random66787 4 года назад +21

    Hi Narain. Great video. However, there seems to be a mistake at 3:26 in the estimation part. 100k/(24*3600) = ~1.5 not 1.5k writes/sec.

    • @TechDummiesNarendraL
      @TechDummiesNarendraL  4 года назад +5

      Feels stupid, why did I make that mistake😁

    • @UntamedRogueMavrick
      @UntamedRogueMavrick 3 года назад +3

      @@TechDummiesNarendraL You are doing thousands of smart things. No prob!!!

    • @IC-kf4mz
      @IC-kf4mz 3 года назад +1

      Your comment confused me further. You said "not 1.5k writes/sec" but in video he said "150 writes/sec". Did you mean it should be 1.5 writes/sec and not 150 writes/sec?

    • @IC-kf4mz
      @IC-kf4mz 3 года назад

      Also to note, here "per hour" and "per second" is not really used in the design later on.

    • @umangmalhotra1222
      @umangmalhotra1222 2 года назад

      @@IC-kf4mz Yes, it should be 1.5 writes every second.

  • @dheerendrakaibartta663
    @dheerendrakaibartta663 9 месяцев назад

    good video sir

  • @RajeshKumar-nd5ud
    @RajeshKumar-nd5ud 2 года назад

    Great Job👍
    Waiting for Token based authentication system design.

  • @vimalkumarsinghal
    @vimalkumarsinghal 3 года назад

    Hi Naren, your channel is full of resource ..thanks for sharing. Can you have one video on designing dashboard for efficient data centers monitoring using data model.

  • @piyusgupta9498
    @piyusgupta9498 4 года назад +1

    Excellent explanation Narendra, Wish you a very happy birthday dear !!!

  • @Eremtek
    @Eremtek 3 года назад

    Thanks for the explanation!
    In the async clean-up step, should we also clear the value in the mem cache? For long texts, we'd end up with a preview (from the cache) but when it tries to fetch the full text from the DB it'll error out?

    • @rajeshrajendiran887
      @rajeshrajendiran887 3 года назад

      Mostly we will cache the data with some expiry dates time like 2 days or 7 days something like that, so it will automatically expiry automatically

  • @JoshMadakor
    @JoshMadakor 2 года назад

    This is good. Thank you :)

  • @kumark7505
    @kumark7505 2 года назад

    Hi Narain, good video and explanation.
    Question on S3 Blob retrieval! Do you share the blob link to client and client downloads content? In this case, how authentication to S3 happens?
    Or
    Webserver behind the gateway retrieves the content from s3 by authentication and then send the downloaded data to client?.

  • @permshivsingh5215
    @permshivsingh5215 2 года назад

    Hi Narain if we are using twiiter snowflake to generate unique IDs and generate hashvalue from IDs using base 62 conversation then there is no chance of collisions. So I think we don't need KGS service . Write service can handle the key generation part and no need to check db if key exist or not as keys are always unique. What do you think ?

  • @designvoodoo
    @designvoodoo 3 года назад

    Can you please make a video about Notion? I'm working on my final year project at university, measuring the impact of various software on the planet - your videos are so helpful! Thank you

  • @Ramchandra-fp2ty
    @Ramchandra-fp2ty 3 года назад

    Hi Narendra, can you please discuss the feature of sharing the paste with other users and discuss it at scale and how to handle it

  • @mykytapiskarov7291
    @mykytapiskarov7291 4 месяца назад

    Thanks Narendra! I learned lots of great ideas from you! One question, there's can be race condition when two write APIs will get same key from DKGS. How can we prevent such race condition?

  • @unboxhdtech2185
    @unboxhdtech2185 2 года назад

    Let's see how many legends will watch this incredible video to the end🧡

  • @2devanshi
    @2devanshi 4 года назад +6

    Please try to include Food delivery system( real time tracking, multiple different apps for each types of user(buyer/delivery/hotel), synch between apps, sending device info when app is web based/sdk based etc) and ecommerce site( like best practices for big billion day with less latency(how we can optimize locking), Order management services - where millions of customers wants to view order in real time, order tracking, canceling order and similar kinds of design challenges in such systems)

    • @indiansoftwareengineer4899
      @indiansoftwareengineer4899 4 года назад

      Yeah, please make video on Swiggy or zomatos system design video.

    • @outofbody4788
      @outofbody4788 2 года назад

      lol - in other words "please design my business idea"

  • @arunavamukherjee2087
    @arunavamukherjee2087 2 года назад

    Hi Narendra, May be I missed something, but why we cant store everything in S3 and use a Geo specific CDN around that to get the data very fast? in that case we dont need the actual data in DB.

  • @jayeshsolanki1032
    @jayeshsolanki1032 3 года назад +1

    Hey Naren, where are you these days?? I really miss your videos on SAD. Please come back..

  • @flavius29663
    @flavius29663 3 года назад

    Hi, very nice video. Why are you saying that memcached is faster than redis for this usage pattern? Are there some benchmarks or white papers? Or what are you basing this assumption on?

  • @hs2075
    @hs2075 3 года назад

    Can't we use Range based approach with Zookeeper as u explained in urlShortner design video to generate the keys?

  • @omprakashyadav-hf4pg
    @omprakashyadav-hf4pg 3 года назад

    Awesome video. Distributed key generation service can use bloom filter instead of Redis.

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

      Why? Bloom filter is not deterministic , it is a probabilistic data structure, it only gives true negation but can give a false positive.

  • @akashgupta13
    @akashgupta13 4 года назад +2

    Happy Birthday! 🎉🎂

  • @abhishek08aug
    @abhishek08aug 3 года назад

    Hi Naren, Thank you so much for the amazing work of teaching system design that you are doing. Over the last few minutes I just kept wondering should we also not flush out the paste from the cache as well? As in what happens if my highly popular JSON’s soul just doesn’t become too out of talks to leave the cache even though its long dead in the DB?

    • @sreevishal2223
      @sreevishal2223 3 года назад

      Yup your right!. Also most caching services have in-build expiry feature so those services can work independently.

  • @SakshiJain-bq6gc
    @SakshiJain-bq6gc 18 дней назад

    Thanks Narendra for great videos. I see you corrected the Traffic estimation. Shouldn't it also change the storage estimation?

  • @altugaecoffice
    @altugaecoffice 2 года назад

    Hi Naren, great content as always. I noticed u have not posted since last year. Are you going to put any more great videos as u used to or r u taking a break?

  • @pandalove5374
    @pandalove5374 2 года назад

    Thank you so much for uploading great content. Can you please explain what happen to local counter when it recover from a failure? will be it reset to initial value?

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

    Thanks! I think cleanup service has to delete record from MemCache if record present in cache.

  • @rahulsharma5030
    @rahulsharma5030 3 года назад

    @29, if we know algo to generate keys, like time stamp+node_id+counter. Then why cant write service generate on its own?It will take almost ineligible time

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

    for unique keys, can't we use same zookeeper process as we used in the url shortening design?

  • @prernachauhan6262
    @prernachauhan6262 3 года назад

    I did not understand the 64^10 part?
    I understand that we have 64 bit(8 character) unique Id, that can be used in our URL right? How are we generating 10 character url with 64 possibilities at each character?

  • @mohammadkaif8143
    @mohammadkaif8143 2 года назад

    One small correction, there would be userId field in the paste table.(13:48)

  • @jesuskeyz
    @jesuskeyz 3 года назад

    could you do a video on WAZE system design? Or is that similar to UBER.

  • @ahmedkhaled4768
    @ahmedkhaled4768 3 года назад

    interesting thanks

  • @abcd12272
    @abcd12272 3 года назад

    Do we really need to keep track of used token ranges? Threads in the key generation service will always increment and return anyways, question of providing used keys will never arise

  • @umangmalhotra1222
    @umangmalhotra1222 2 года назад

    12:30 , isn't 65 KB Max row size in DBs like MYSQL? How are we going to store 100 KB data then in content field ?

  • @munnykumar6248
    @munnykumar6248 3 года назад +1

    Please, describe socket connection in a distributed system/multi-server system

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

    How is "User can decide on the pastebin link" solved? Here it seems that the user can keep on trying for a unique ID, of length 10 as constrained, and keep on hitting on the already used ones, leading to going to and fro until he finds a unique key? Does the snowflake generator or just a normal key generator help with this?

  • @irvinge4641
    @irvinge4641 3 года назад

    shouldnt the cleanup service also cleanup the used keys in Redis?

  • @IC-kf4mz
    @IC-kf4mz 3 года назад

    1. Is schema important to discuss in System Design in detail?
    2. If serverless, in URL Shortner also can we use serverless?
    3. Why do we use memcached and not redis, just cost? High performance and cost?
    4. Is Zookeeper a DKGS?

  • @jp-uo7bz
    @jp-uo7bz 3 года назад

    Why were both redis and memcached used? Wouldn't either solve the job?

  • @AkshayTaletiya
    @AkshayTaletiya 3 года назад

    I have a suggestion/question - could we not create GUID instead of using DKGS

  • @dpynsnyl
    @dpynsnyl 9 месяцев назад

    This is grade A stuff!

  • @shahanakhan8299
    @shahanakhan8299 3 года назад +1

    The traffic estimates for writes is incorrect. 100K/(24*3600) = 1.1 pastes/sec . Am I missing something here?

  • @Emmanuel-px9lk
    @Emmanuel-px9lk 4 года назад +1

    Put a queue/message broker between the DKGS and consumers

  • @AModernCTO
    @AModernCTO 4 года назад +1

    How much cost you to add English subtitles in your videos or even Portuguese? It an awesome subject that should be available for more people to enjoy it.

    • @elproferiveraoficial
      @elproferiveraoficial 3 года назад

      his english is very understable and if you are in a real interview they won't show you subtitles.

    • @AModernCTO
      @AModernCTO 3 года назад

      It's not about real interview.
      It's about making his content available to everybody.

    • @elproferiveraoficial
      @elproferiveraoficial 3 года назад

      @@AModernCTO the video already has CC.

  • @sreemanth
    @sreemanth 4 года назад +1

    Key generation service , can we use bloomfilter to reduces size of redis memory size?

    • @TechDummiesNarendraL
      @TechDummiesNarendraL  4 года назад

      Yes

    • @eeyore345
      @eeyore345 3 года назад

      @@TechDummiesNarendraL Hmm .. bloom filter may return true when it's not, wouldn't it? I suppose since we have quite a few IDs to spare in this case, that could do. :)

  • @YashJain94
    @YashJain94 2 года назад +1

    Paste schema needs to also have user_id and user schema needs to have a list of all pastes created to fulfill the functional requirements

  • @zhqzhao
    @zhqzhao 4 года назад

    I think the redis and memcached are both performant enough.

  • @elfchosen1477
    @elfchosen1477 3 года назад

    I am wondering why blob storage read does not have cached?

  • @jrwang537
    @jrwang537 3 года назад +1

    Do you still make videos in this channel?

  • @abcd12272
    @abcd12272 3 года назад

    Redis vs Memcache, when to use what?

  • @nayannandi3596
    @nayannandi3596 2 года назад +1

    Sir make a video on charting website like tradingview system design.....

  • @nayannandi3596
    @nayannandi3596 2 года назад +1

    Make a video on tradingview system design....

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

    When key is expired, should we clear MemCache as well? Or it will be automatically cleared once DB is cleared. Thanks.

  • @aditigupta6870
    @aditigupta6870 2 месяца назад

    Hi, good explanation, but why there is no linking attribute between User and Paste tables

    • @aditigupta6870
      @aditigupta6870 2 месяца назад

      Shouldnt a CreatedBy field be there in Paste table referring to User table

  • @CODFactory
    @CODFactory 4 года назад

    Why can't we use Zookeeper for key generation just like we used for url shortener?

    • @TechDummiesNarendraL
      @TechDummiesNarendraL  4 года назад +4

      You can, the reason why I didn't use is to show different ways of doing same thing

  • @mayukhdifferent
    @mayukhdifferent 3 года назад

    Please make a video on Skip list

  • @winitan
    @winitan 2 года назад

    Why couldn't zookeeper be used to generate unique id's in this case also just like in URL shortener video instead of KGS?

  • @akashdarji7131
    @akashdarji7131 2 года назад +1

    hey bro
    if you have time can you make video on Brave Browser Blockchain based - System design, architecture. thanks

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

    Can you please upload the basics of systems design

  • @anusree114
    @anusree114 3 года назад

    Naren , you stopped making videos ?? Ohh ohh you might be busy on new job, but.......... we want you back.

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

    Does memcache support replication? I guess not and it isn’t great for distributed systems. I would like to know more why memcache is a better choice here than redis.

  • @bharatranpariya5581
    @bharatranpariya5581 3 года назад

    What if we use UUID as unique key? It will never be duplicated as per my knowledge.

    • @TechDummiesNarendraL
      @TechDummiesNarendraL  3 года назад +2

      You can, but the URL will be long

    • @useful6131
      @useful6131 2 года назад

      @@TechDummiesNarendraL that doesn't matter because it is not shortening service, right? People will be copy-paste-ing the URLs anyways.

  • @devarpi911
    @devarpi911 11 месяцев назад

    For keys can't we use UUID V4?

  • @Miguel-ym2rr
    @Miguel-ym2rr 3 года назад

    Hi Naren, thank you so much for this video, great explanation!!. do you know other ways to implement a DKG service?

    • @gauravmalik5560
      @gauravmalik5560 3 года назад

      You can generate through hashing algorithms like MD5 or BASE 62.

    • @neiltakru
      @neiltakru 2 года назад

      you can just you a column in mysql which gets incremented by 1000 or 10k to get set of keys in a transaction, and then use these keys and other values(timestamp,applicationId etc.) to create random url

  • @wanmingtom
    @wanmingtom 3 года назад

    Is it really nessasary to build a service only for generating unique key?

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

    Why are we using SQL for storing data here?