one of those videos where you get most from viewing time - very concise, effective, no side bs, covers edge cases etc 💜
@rachity10010 ай бұрын
Amazed by the simplicity with which you explained everything, I think I will never forget a url shortner design now
@SimonAtkinsWins10 ай бұрын
Excellent video, I think in system design I tend to think it's going to have many more moving parts but this shows that sometimes it's just client-server-DB on steroids.
@codetour10 ай бұрын
Yeah it’s true, this is a relatively simple example, can get potentially way crazier when taking about other common system design questions like say, how would you build Uber, or how would you build Spotify, or something
@MrLexGr10 ай бұрын
Solid, concise and the perfect warm up for every time I'm doing a last minute refresh before an interview.
@kevinmuhia591510 ай бұрын
What a coincidence, i am actually building a url shortener as a personal project and your video has provided me with more than enough information to build on what i already have. Great video.
@jonragnarsson10 ай бұрын
Heh, if you get a short url domain, you are bound by law to create an url shortener app. I got the last single letter domain in my country, so of course I did exactly that. Not going to post the link here, don't know if my tiny server would handle the traffic
@phoneywheeze10 ай бұрын
@@jonragnarssonwhat's a short url domain? also, does that mean x (twitter) should provide a url shortening service on the new domain as well?
@prathamgarg95487 ай бұрын
15 mins of video and hours of value, great video Loved it👍 Would love to see more videos like this on designing systems
@supax210 ай бұрын
10/10 explanations and visuals. We need more!
@huangjason65577 ай бұрын
Simple and just deep enough for non coder to understand. Awsome !
@aidenberzins10 ай бұрын
Love this content wish there was more system design videos like this on KZbin. Thank you.
@erezh171610 ай бұрын
Great video! Got an interview next week which I was told I’m gonna be designing a system similar to the one in the video, this helped me a lot.
@codetour10 ай бұрын
Awesome! Appreciate you watching
@AaronJOlson10 ай бұрын
This is the best explanation of this I have seen. Thank you!
@gadgetvala10 ай бұрын
The starting part where he explained the calculations of storage and other stuff gave me a GOOSEBUMP, just imagine explaining the same flow when the interviewer asks you this!!
@andresroca97369 ай бұрын
What a nice piece of knowledge and thought delivery 👏👏
@LucasAlves19 ай бұрын
Really amazing content. Keep it up!
@sleepydogo10 ай бұрын
I love this kind of videos covering the theoretical part of programming! Great information on system architecture😁
@dailyearningscalls35710 ай бұрын
Saw this video, watched the rest of your videos, learned a bunch, and came back to say thanks. I really liked the system design videos. Seems like the algorithm liked it too. Keep up the good work and see you in the next one.
@BlaBlaBlaInDaHouse9 ай бұрын
Very nice breakdown, reveals a lot of useful information.
@jl18359 ай бұрын
Love the way you explain things in a smiple way! Would love to see more system design viddoes from you!
@codetour9 ай бұрын
thanks! just published a new one
@jl18359 ай бұрын
@@codetour YESSSSIR! Can't wait to watch it tonight when I get home!
@binhnguyen-bi8ig8 ай бұрын
Thank you so much for the quality content. Please make a series of system design! I feel so struggle and inefficient when designing complex system.
@aryog719210 ай бұрын
Loved your explanation. Looking forward for more videos.
@CarlosGomez-iq7pw10 ай бұрын
Great video and easy to follow explanation! Looking forward to more
@winzkk87459 ай бұрын
Just one word - Perfect. Something I was looking for! Thanks
@AjayCoding10 ай бұрын
Great video
@paulybarros10 ай бұрын
Glad the algo picked up your video your channel is really good
@anotherme463810 ай бұрын
Great video, It is simple, informative and ease to understand Thanks a lot
@raofulkarim28229 ай бұрын
Very nice
@ajml_hnter9 ай бұрын
Do more system design videos. Absolutely loved it 👍
@irshitmukherjee794310 ай бұрын
Great explaination...............best one so faaaaaaar
@mohamedtag792010 ай бұрын
Love the look into the details
@dhruvsolanki447310 ай бұрын
Really good explanation.
@ShivamKumar-bt9nn8 ай бұрын
Simple and yet scalable design compare to others. Thanks a lot...
@mrkostya00810 ай бұрын
I love the content that youtube has finally started droppijg in my recommended
@lxdzii10 ай бұрын
Great tutorial🎉❤
@netprepare10 ай бұрын
Love It, simple and informative
@cocosloan374810 ай бұрын
Amazing.. Bravo 👍👍
@BhideSvelte10 ай бұрын
i m just loving it
@aliadel172310 ай бұрын
Awesome .. keep going and do more videos about SD ♥
@chefdremusic7 ай бұрын
Hands down top 2 system design vid on TinyURL on this site.
@sreekarswarnapuri10 ай бұрын
Learnt a lot of concepts in this one. Thank you so much!!😅
@wicktorinox694210 ай бұрын
great video, that demonstrate the importance of thinking a bit in advance, before start coding. Eventually we end up with a cache lookup system. I have some questions... 1) Do you consider validating the URLs? Is there a limitation? What if someone would basically start to use this as a free cache store... 2) Are these tiny URLs are public or do you need the access keys to get to the real one? 3) I am wondering if you could possibly use a simple counter and hash that, instead of the whole URL. That would be faster and the hash would have a great distribution as well. 4) If you have the same hash for the same URL, it would be hard to delete the entry later, since other client has the reference. However, that could be a "prime" feature
@ExylonBotOfficial10 ай бұрын
I'm glad I discovered thia channel!
@TonySoprano-r4l10 ай бұрын
Thanks for the video
@ReinventedWeb10 ай бұрын
Great video. Super informative.
@codetour10 ай бұрын
Appreciate you!
@malawad10 ай бұрын
pleaaase more of this , the format is brilliant
@AjayJetty8 ай бұрын
Amazing simplicity bro, keep rocking
@thedebapriyakar9 ай бұрын
crazy good explanation
@RohitAwate9 ай бұрын
Great video, you have a subscriber! Had a couple of questions about the shortening approaches: 1. On the key-generation approach: What's the rationale behind pre-generating keys? Are you trying to avoid a uniqueness check at creation time? Would the UNIQUE index on an SQL table be too big/slow? 2. On the hashing approach: Does the hash function guarantee equal distribution amongst the buckets? Not sure if picking the first letter out of the hash guarantees that. If not, perhaps re-hashing the hash with a function that guarantees a uniformly random output might do the trick. All this to say that skewed shards might be a big problem.
@semosemo382710 ай бұрын
waiting new Systems designs ❤❤
@PUNEETRAIPURIA10 ай бұрын
subscribed👍
@abhishekwadhawan538110 ай бұрын
Great video. Couple of questions- 1. You said there shouldn't be more than 1 short urls for a single long url. So do you check in the database if a long url already has a short url or does the "hash" function takes care of it? 2. Do you just return the same short url for a different person if he has requested for long url already created by a previous person? If yes then why do you store the userId in the table
@codetour10 ай бұрын
yes! great questions. 1. In theory the hashing technique (or the random keygen + dedicated db technique) should always create unique hashes so there should be no collisions. But it's cheap to just double check the DB and make sure no shortURL already exists so there are no duplicates/collisions. So we can just go ahead and do that as well. 2. That's a great point, I honestly hadn't really considered. I think for user experience you would want to give person 2 a fresh unique tinyURL (especially if they are requesting a custom tiny url). So there would be 2 different entries in the database where the keys are different tiny hashes, but the values both include the same long URL. so to your point, yeah the userID might not be necessary
@abhishekwadhawan538110 ай бұрын
@@codetour Thanks for the reply. Looking forward to more videos on system design questions. Cheers 🍻
@LocdNCoded10 ай бұрын
Great video. Principal Engineer here, learned a thing or two and you touched on just enough. I liked the stats, however depending on how popular this service is these things would change a bit. An idea for more content would be to break these up into something like a hobby project, medium size (whatever that means, and enterprise level (what you displayed here). Regardless loved it!
@maneeshguptanalluru78074 ай бұрын
@Codetour very clear explaination. Could you share which tool you are using for drawing?
@kevinding02187 ай бұрын
When talking about choosing between RDS vs NoSQL, IMO I was a little uncertain when it mentioned strong (RDS) vs eventual consistency (NoSQL). To RDS with a single instance, it might be confident to state that it can align with strong consistency, but when comes with replication nodes, RDS may also not guarantee consistency
@dekooks154310 ай бұрын
Great presentation ! One question though, how would you determine in advance which links are considered "hot" ?
@b3arwithm38 ай бұрын
I think you should have expanded on how to compute that tinyurl. Its more relevant than explaining the lru which was very superficial
@abhilashkumar475310 ай бұрын
👌👌
@sandreke9910 ай бұрын
Very useful! 🙌👨💻
@renato.rodriguesАй бұрын
Hi there, I really loved the way you explain, excellent video! Do you mind to share the tools you used to record this video and create this presentation?
@roach_jsh7 ай бұрын
The estimation of cache size would be good enough? I think we should estimate cache size based on shorten urls that are more getting heated then others url. So, If it's only 20% of shorten urls that are created with in a month, we can roughly expect that it would be ((500 bytes * 100 mil) / 100) * 20 = around 9 GB.
@yaserahmed972110 ай бұрын
Food for thought: What if we did not want the tiny url to be stored forever? Say we want it to be available for a short span of say 2 hours? What's the approach?
@sourabhchoudhary72897 ай бұрын
Hi In article with base64 conversion there is a problem to address. We have a counter that is shared across servers, so that counter is critical section and race condition might arrive as diff servers can read same value and generate same short-url. We must ensure mutual exclucion in that case. Correct me if i am wrong :)
@DmitryVasilyev-um7ox3 ай бұрын
Thanks for the great video! It covers many important points. However, I think the SQL vs. NoSQL explanation isn't entirely accurate. Eventual consistency isn't exclusive to NoSQL databases; both relational (SQL) and NoSQL databases can typically be configured to replicate writes either synchronously or asynchronously. The ACID properties relate to transaction management and do not address data consistency across database replicas. Word "Consistency" in case of ACID means "DB ensures that a transaction can only bring the database from one consistent state to another, preserving database invariants like key uniqueness etc"
@jlee-mp48 ай бұрын
where does the 70GB cache storage come from? Given 60TB total storage, wouldn't 20% of 60TB be around 12 TB?
@thedelanyo4 ай бұрын
Subscribed 😅😅
@amandeepsingh99356 ай бұрын
Thank you
@kaartiknayak466610 ай бұрын
what's the name of the whiteboard seems pretty cool
@codetour10 ай бұрын
Photoshop
@chrissalgaj411110 ай бұрын
Crazy to think how much there is to even a simple seeming thing and then you realize there is still so much missing like authentication, authorization, payment handling, plans, email confirmations, internationalization of the website, possibly rate limiting for non paying customers…
@enamya818810 ай бұрын
in 5:07, I don't think that the API key should be needed for the redirection endpoint
@mutahhirkhan10 ай бұрын
Super mindful video, you better not get lost in any section of the video or you'll end up like, is this gibberish? 😂 Awesome explanation 🎉
@markgoho3 ай бұрын
"slightly inspired" by Sandeep's article 🤔
@dmc807410 ай бұрын
Is there any reason for the assumption of 200:1 read: create ratio? If, then please explain.
@Daniel-sy3wo10 ай бұрын
No particular reason for those specific numbers. This is a napkin calculation so the idea is to say “here we’ll get way more reads than writes”. for this exercise it wouldn’t make much difference if the ratio was 400:1 or 1000:50 etc.
@learnwithabdulbari10 ай бұрын
So, you just make up those numbers and define your own requirements and through a bunch of servers to do these things. I don't understand why people take system design interview. that's just seem to me common sense to load balance your requirements. Any software dev should know them.
@whoknows367910 ай бұрын
I think a more realistic solution would use cloud providers and their services which for this case is even more simple with some KV storage and serverless functions
@chessmaster8569 ай бұрын
Oh rdbms? You must be dinausaur or reptile
@hans_13379 ай бұрын
can people really do all this math in their head that quick?
@arturf20910 ай бұрын
How exactly will I earn money with that scale? 😮 Service should also provide some statistics, so users know if they draw any traffic and when. Add these to your calculations - data + load You said 100 years - where is expiry date? How often do you check when to delete? 100 years idea is just stupid overkill, stretching whole budget, give few years or check traffic to each link and if something seems not used then delete it.
@blizzy7810 ай бұрын
what's with the holding your mic trend 😂
@codetour10 ай бұрын
Using a microphone improves the quality of your audio much more than for example just recording straight into your phone/camera
@blizzy7810 ай бұрын
@@codetour That's not what I meant. I get the point of using a good mic. But why not just put it on your shirt instead of holding it in your hand 😉
@codetour10 ай бұрын
the sound quality is actually slightly better when the mic head doesn't rub against fabric@@blizzy78
@lonnybulldozer842610 ай бұрын
You're a surface-level scammer.
@codetour10 ай бұрын
Tell me more
@lonnybulldozer842610 ай бұрын
@@codetour I'll be honest with you. I've been shadowed-banned many times, so I just assume all of the comments I post will never be seen.
@chessmaster8569 ай бұрын
First shorten it. You are talking something else.😅
@codetour9 ай бұрын
Intuitively you are correct my friend but if you ever go Into an interview it’s important to clarify why, and how, you are shortening it first. Always the first thing you should do is ask clarifying questions