Paste bin system design | Software architecture for paste bin

Sdílet
Vložit
  • čas přidán 9. 07. 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

Komentáře • 167

  • @pubamx
    @pubamx Před 2 lety +2

    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 Před 3 lety +2

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

  • @mauvezebra
    @mauvezebra Před 2 lety +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!

  • @yodali7999
    @yodali7999 Před 3 lety

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

  • @ahmadasgharianrezaei6846

    Outstanding, clear and very deep solution for this problem. Really enjoyed it. Very well presented.

  • @JuanHernandezV
    @JuanHernandezV Před 3 lety +1

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

  • @carlosluque4753
    @carlosluque4753 Před 10 měsíci +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

  • @shubhamlodhi7641
    @shubhamlodhi7641 Před 4 lety

    This guy is truly a genius. Keep doing good work

  • @venkateswarank1145
    @venkateswarank1145 Před 4 lety +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 Před 4 lety

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

  • @TheRealAndOnlyAsr
    @TheRealAndOnlyAsr Před 3 lety

    Thanks! Your videos are always top quality

  • @brijchavda
    @brijchavda Před 3 lety +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 Před 2 lety +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 Před rokem +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 Před rokem

      @@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 Před 8 měsíci

      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 Před měsícem +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

  • @willinton06
    @willinton06 Před 4 lety +1

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

  • @iancarbaugh4081
    @iancarbaugh4081 Před 3 lety

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

  • @screen189
    @screen189 Před 3 lety

    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.

  • @lnit7411
    @lnit7411 Před 4 lety

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

  • @xxbighotshotxx
    @xxbighotshotxx Před 2 lety

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

  • @parthsharma8269
    @parthsharma8269 Před 3 lety +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

  • @triv984
    @triv984 Před 3 lety +13

    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!

  • @GauravJain108
    @GauravJain108 Před 3 lety +1

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

  • @santoshreddy9628
    @santoshreddy9628 Před 4 lety

    Very nicely explained thank you.

  • @Akashkumar-md6rg
    @Akashkumar-md6rg Před 4 lety

    Simply awesome!!😎😎

  • @jh0720
    @jh0720 Před 4 lety

    Your videos keeping getting better

  • @vijitail1979
    @vijitail1979 Před 4 lety

    Great explanation!!

  • @kumarc4853
    @kumarc4853 Před 3 lety

    Thank you for great content :)

  • @JoshMadakor
    @JoshMadakor Před 2 lety

    This is good. Thank you :)

  • @MultiPriya28
    @MultiPriya28 Před 4 lety +34

    Please make a video on github design! :)

  • @rahulsharma5030
    @rahulsharma5030 Před 3 lety +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

  • @ghanshyam014
    @ghanshyam014 Před 4 lety

    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 ❣️🌿🌸

  • @meghadave9363
    @meghadave9363 Před 3 měsíci

    hi. some really important points for decision making. thanks

  • @Tamer_Ali
    @Tamer_Ali Před 4 lety

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

  • @RajeshKumar-nd5ud
    @RajeshKumar-nd5ud Před 2 lety

    Great Job👍
    Waiting for Token based authentication system design.

  • @user-oy4kf5wr8l
    @user-oy4kf5wr8l Před 4 lety +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

  • @shashankmishra484
    @shashankmishra484 Před rokem

    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?

  • @totolipton
    @totolipton Před 4 lety +5

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

  • @rahulsharma5030
    @rahulsharma5030 Před 3 lety

    @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

  • @vimalkumarsinghal
    @vimalkumarsinghal Před 4 lety

    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 Před 4 lety +1

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

  • @arunavamukherjee2087
    @arunavamukherjee2087 Před 2 lety

    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.

  • @Eremtek
    @Eremtek Před 3 lety

    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 Před 3 lety

      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

  • @permshivsingh5215
    @permshivsingh5215 Před 3 lety

    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 ?

  • @random66787
    @random66787 Před 4 lety +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  Před 4 lety +5

      Feels stupid, why did I make that mistake😁

    • @UntamedRogueMavrick
      @UntamedRogueMavrick Před 3 lety +3

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

    • @IC-kf4mz
      @IC-kf4mz Před 3 lety +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 Před 3 lety

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

    • @umangmalhotra1222
      @umangmalhotra1222 Před 2 lety

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

  • @dheerendrakaibartta663
    @dheerendrakaibartta663 Před 10 měsíci

    good video sir

  • @shreyas23100252
    @shreyas23100252 Před 3 lety

    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.

  • @unboxhdtech2185
    @unboxhdtech2185 Před 2 lety

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

  • @bhavyabansal1143
    @bhavyabansal1143 Před rokem

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

  • @designvoodoo
    @designvoodoo Před 3 lety

    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

  • @akashgupta13
    @akashgupta13 Před 4 lety +2

    Happy Birthday! 🎉🎂

  • @hs2075
    @hs2075 Před 3 lety

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

  • @2devanshi
    @2devanshi Před 4 lety +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)

  • @anshulgolu123
    @anshulgolu123 Před 3 lety +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

  • @umangmalhotra1222
    @umangmalhotra1222 Před 2 lety

    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 ?

  • @mykytapiskarov7291
    @mykytapiskarov7291 Před 5 měsíci

    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?

  • @syjaf6615
    @syjaf6615 Před 4 lety

    first one!

  • @ADG1025
    @ADG1025 Před 2 lety

    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.

  • @prernachauhan6262
    @prernachauhan6262 Před 3 lety

    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?

  • @PRADIP2010PATEL
    @PRADIP2010PATEL Před rokem

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

  • @omprakashyadav-hf4pg
    @omprakashyadav-hf4pg Před 4 lety

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

    • @kartikvaidyanathan1237
      @kartikvaidyanathan1237 Před 2 lety

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

  • @dpynsnyl
    @dpynsnyl Před 10 měsíci

    This is grade A stuff!

  • @flavius29663
    @flavius29663 Před 3 lety

    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?

  • @Rockersvirtue
    @Rockersvirtue Před 4 lety

    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?

  • @kumark7505
    @kumark7505 Před 2 lety

    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?.

  • @irvinge4641
    @irvinge4641 Před 3 lety

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

  • @elfchosen1477
    @elfchosen1477 Před 3 lety

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

  • @shahanakhan8299
    @shahanakhan8299 Před 3 lety +1

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

  • @ahmedkhaled4768
    @ahmedkhaled4768 Před 3 lety

    interesting thanks

  • @jp-uo7bz
    @jp-uo7bz Před 3 lety

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

  • @janezhou4641
    @janezhou4641 Před rokem

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

  • @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.

  • @jayeshsolanki1032
    @jayeshsolanki1032 Před 3 lety +1

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

  • @abhishek08aug
    @abhishek08aug Před 4 lety

    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 Před 4 lety

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

  • @abcd12272
    @abcd12272 Před 3 lety

    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

  • @mohammadkaif8143
    @mohammadkaif8143 Před 2 lety

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

  • @sreemanth
    @sreemanth Před 4 lety +1

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

    • @TechDummiesNarendraL
      @TechDummiesNarendraL  Před 4 lety

      Yes

    • @eeyore345
      @eeyore345 Před 4 lety

      @@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. :)

  • @jh0720
    @jh0720 Před 4 lety

    (64^10)*10 ≈ 1e+19, so shouldn't this be more like 10000000 TB and not 100 GB?

  • @Ramchandra-fp2ty
    @Ramchandra-fp2ty Před 3 lety

    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

  • @desiguy5508
    @desiguy5508 Před rokem

    Why are we using SQL for storing data here?

  • @devarpi911
    @devarpi911 Před rokem

    For keys can't we use UUID V4?

  • @SakshiJain-bq6gc
    @SakshiJain-bq6gc Před měsícem

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

  • @altugaecoffice
    @altugaecoffice Před 2 lety

    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?

  • @YashJain94
    @YashJain94 Před 2 lety +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

  • @AkshayTaletiya
    @AkshayTaletiya Před 3 lety

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

  • @Emmanuel-px9lk
    @Emmanuel-px9lk Před 4 lety +1

    Put a queue/message broker between the DKGS and consumers

  • @munnykumar6248
    @munnykumar6248 Před 3 lety +1

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

  • @zhqzhao
    @zhqzhao Před 4 lety

    I think the redis and memcached are both performant enough.

  • @IC-kf4mz
    @IC-kf4mz Před 3 lety

    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?

  • @winitan
    @winitan Před 2 lety

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

  • @Yash-cg6if
    @Yash-cg6if Před rokem

    Hi sir, i have one question. I am new to all this i am 12th passout so it might be dumb question for you but please reply the answer.
    if pastebin gets expired how to delete it from database either scan database daily for which text has expired and remove it or any other technique which one is best, optimized,etc.
    and if we bin gets expired after 10 mins, 1hr,etc. then how to implement how to do it?

  • @pandalove5374
    @pandalove5374 Před 2 lety

    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?

  • @CODFactory
    @CODFactory Před 4 lety

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

    • @TechDummiesNarendraL
      @TechDummiesNarendraL  Před 4 lety +4

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

  • @abcd12272
    @abcd12272 Před 3 lety

    Redis vs Memcache, when to use what?

  • @nayannandi3596
    @nayannandi3596 Před 2 lety +1

    Make a video on tradingview system design....

  • @jesuskeyz
    @jesuskeyz Před 3 lety

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

  • @nayannandi3596
    @nayannandi3596 Před 2 lety +1

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

  • @tradestar9266
    @tradestar9266 Před rokem +1

    Bro Can you make video of ZERODHA KITE system design

  • @jrwang537
    @jrwang537 Před 3 lety +1

    Do you still make videos in this channel?

  • @akashdarji7131
    @akashdarji7131 Před 2 lety +1

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

  • @deveshranjan6204
    @deveshranjan6204 Před 7 dny

    Why have you used serverless for this problem, it will cost more than using a full server for the problem

  • @aipaperreader
    @aipaperreader Před 3 lety

    Please make a video on Skip list

  • @saurabhmittal6947
    @saurabhmittal6947 Před měsícem

    aren't the initial back of envelope calculations wrong ?