URL shortener system design in Hindi | Tinyurl system design in Hindi | Bitly system design in Hindi

Поділитися
Вставка
  • Опубліковано 16 лис 2024

КОМЕНТАРІ • 61

  • @saurabhmishra6229
    @saurabhmishra6229 Рік тому +13

    This question was asked to me in an interview of a stratup and now I feel how wrong my answers were. Thanks for this video!!

  • @sahil6713
    @sahil6713 10 місяців тому +2

    This playlist is amazing.
    Premium Content in less time.

  • @GauravKumar-cv4yz
    @GauravKumar-cv4yz Рік тому +2

    Bhaiya aapne bhaut acche se smjhaya hai mujhe bhaut help milli project smjhane me

  • @ViragJainimhere
    @ViragJainimhere Рік тому +2

    We want more such System design solved examples from you.. You explain very nicely.

  • @technosmart2435
    @technosmart2435 Рік тому +3

    I have watched all 34 videos, well explained thanks
    Can you please create any social media app system design video for getting basic fundamentals

  • @Chesstreamer
    @Chesstreamer Рік тому

    kaafi simplistic and straight forward expalanation , good for quick revision perspective but lacks indepth explanation.

  • @charumalik6919
    @charumalik6919 Місяць тому

    Much better than Paid courses

  • @harshwardhanshetty4683
    @harshwardhanshetty4683 2 місяці тому

    Best video till now I have seen ❤

  • @VishalYadav-gk1kg
    @VishalYadav-gk1kg 5 місяців тому +1

    Very nice explanation sir, Thank you!

  • @abhinay.k
    @abhinay.k 16 днів тому

    thanks

  • @gauravrai4543
    @gauravrai4543 4 місяці тому

    Very well explained Sir

  • @ViragJainimhere
    @ViragJainimhere Рік тому

    So much clean and clear explanation ..

  • @TCGupta-zg1qk
    @TCGupta-zg1qk 6 місяців тому

    Nice explanation...thank you

  • @dhaneshmangtani7495
    @dhaneshmangtani7495 4 місяці тому

    Thanks for the video. I believe one of the non-functional requirement listed was URL's not being predictable
    Do you think there is a workaround to tweak this design which would make it less predictable?

  • @rishabgupta3419
    @rishabgupta3419 Місяць тому

    In which video can I find about partitioning techniques and consistent hashing?

  • @SchoolScience
    @SchoolScience Рік тому

    Isn't there a possibility of collision using this approach too? Example: for counter value 500000 Base62 hash is GbaifA3M, for counter value 500001 Base62 hash is GbaifA3N. Now if you take the first 7 characters then it ends up in a collision.

  • @lakchchayamkhare9177
    @lakchchayamkhare9177 5 місяців тому

    bhai achi he sari videos!!! bas ye redis zookeeper wagera ni h playlist me ek poora netflix pe ya koi uber type app ka system design video needed h aapse

  • @4444-c4s
    @4444-c4s Рік тому

    Bhai make more of these kind ❤❤

  • @saurabh9486
    @saurabh9486 2 роки тому

    Very nice explanation ... thankyou

  • @PramodSharma-dq3pi
    @PramodSharma-dq3pi 5 місяців тому

    @EngineeringDigest: Insted of zoo-keeper why we can't use MySQL servere here. Because we can use a base conversion algorithm (e.g., Base62) to convert the id to a short URL. This ensures uniqueness and compactness.
    You explained that, we will zoo-keeper to get the range of last record only.
    Any other specific advantage of using zoo-keeper?

  • @abhichi
    @abhichi Рік тому +1

    nice video..looking forward for more videos like this

    • @abhichi
      @abhichi Рік тому

      Can u do a system design for paytm or any other payment application? I would really like to learn about that

    • @EngineeringDigest
      @EngineeringDigest  Рік тому

      Sure, will do it

  • @harshsajla7216
    @harshsajla7216 6 місяців тому

    super ❤

  • @padmanabhwattamwar478
    @padmanabhwattamwar478 Рік тому

    Nice explanation

  • @utkarshranjan7903
    @utkarshranjan7903 Рік тому

    Nice video, more please

  • @akshaykr.8770
    @akshaykr.8770 8 місяців тому

    We want more system design videos

  • @pathik0919
    @pathik0919 2 місяці тому

    Cant we generate ascii number corresponding to url instead of using zookeeper for counter generation?

  • @sourabhmunjal3830
    @sourabhmunjal3830 9 місяців тому

    Gagar mein sagar, tahe dil se shukriya !

  • @utkarshgupta2909
    @utkarshgupta2909 5 місяців тому +1

    60gb in total can be cached. TTL need not to be set.

  • @tusharkuwar4
    @tusharkuwar4 Рік тому

    Lets say you don't want to use zookeeper. Db is postgresql how you can achieve it!?
    Asked in interview

  • @AmitKumar-od1gu
    @AmitKumar-od1gu 22 дні тому

    Why can't we use mongo db object id which is always unique

  • @sarthakgoyal2471
    @sarthakgoyal2471 Місяць тому

    I have recently worked on short URL. To generate a Random number I have taken the ID of user and time stamp to generate Short URL of 8 characters. So I don't think I need an extra condition to check if that url is already present in database as the combination of the URL consists of time stamp which will obviously differ in milliseconds. Let me know if I am correct. I am a fresher so if someone could correct me that will help me to understand things better.

  • @yash.exe27
    @yash.exe27 Рік тому

    sir plz can you implement this in nodejs ? for deep understanding plz

  • @venkatesh1751
    @venkatesh1751 Рік тому

    great work..

  • @DK-ox7ze
    @DK-ox7ze Рік тому

    Nice explanation but a few questions:
    1) How will you manage availability of application servers? For eg if one server crashes then is how will it be replaced? Will zookeeper assign a new server with a new range? What happens when the crashed server recovers and it still has range left?
    2) You mentioned read write replica for Mongodb. How will the read server duplicate data from write server? Will it be sync or async? We might need write through (sync) writes for high durability but it will increase the write time. So what's your thoughts on this?

    • @utkarshranjan7903
      @utkarshranjan7903 Рік тому

      For your second question, I think async would be better because we want high availability. Because write is very less compared to read consistency won't be a big issue. What do you think about this? Correct me if I am wrong

  • @RAJ52766
    @RAJ52766 6 місяців тому

    1.25 M * 500 bytes = ~0.6 GB

  • @shaileshsingh1717
    @shaileshsingh1717 Рік тому

    Bolo system design waale baba ji ki jaii🎉🎉

  • @bhupendersoni5467
    @bhupendersoni5467 Рік тому

    Your explanation was great for resource assumption and other things but I felt that the Design section was a bit compromised. Please for the next system Design video elaborate on the design bit more.

  • @SiddharthBhadauria
    @SiddharthBhadauria 8 місяців тому

    Agar Hashmap avoid hi karna tha to itne bakaiti ka fayda kaise hua? Last me kis url k liye konsa random number generate hua and uska base 62 kya hai ye bhi to kahi se map krke nikaloge hi na ?
    Hashmap to usme bhi lagega.

  • @RawFromCam
    @RawFromCam 6 місяців тому

    0.58 gb approx to 1gb

  • @shashikantverma9931
    @shashikantverma9931 Рік тому

    Good

  • @adityajain1205
    @adityajain1205 3 місяці тому

    Why are we using mongo here?? Can someone provide better explaination?

  • @InfinteMotivation
    @InfinteMotivation Рік тому

    aap haryana se h kya?

  • @SatyaJeetBabaji
    @SatyaJeetBabaji Рік тому

    Fbls , nvr seen the so dept video

  • @thesoftwareengineer17
    @thesoftwareengineer17 Рік тому

    plz share the slides

  • @shwetabhargava-ic5dn
    @shwetabhargava-ic5dn 4 місяці тому

    you did not tell how to convert a number to 7 character base62 string. say my counter is just at 2 how that will convert to a 7 char base62 string? its just a adhura gyan

  • @sumitsaini8012
    @sumitsaini8012 Рік тому

    Msst