He is not a smooth operator. He lacks System design experience & doesn't know many basic things. Being Overconfidence over his face, & doesn't even behaving like a interviewee. Hence Interviewer took the responsibility to continue the design, because she needed content for RUclips video.
@@dakshayagarwal2560 +1 It all started with him not listing watch feature in functional requirements and then saying no idea in non functional requirements. He failed the interview in the first 2 minutes.
The way keerti is explaining the concepts and logic shows she has more theoretical knowledge and Harkirat is being more practical here like there will be need of updating user’s profile picture if storing that in meta data etc… and i think that should be the approach to any system design problem which is way more than just drawing boxes.
This guy has very good real world work experience which is very clear from his questions and suggestions while Keerti has a lot of theoretical knowledge, just an observation.
The fact that Harkirat's channel has grown massively over the last few months is because he has this original element in his content and ppl can relate with what he says. Being someone who's pivoting from Non tech to Tech, I'm truly inspired by Harkirat.
From this awesome System design discussion I could clearly see that these two folks have a very different thought process. Where Keerti likes to discuss about the Highlevel system design. And The dude likes to see the knitty gritty of the problem and visualizes how it will actually look physically.
Great informative video! Just to add more on TCP/UDP part, RUclips and other social media platforms where live streaming is performed, they use Dynamic Adaptive Streaming over HTTP (DASH) protocol which is based on TCP since it gives adaptive bit rate streaming - different resolutions , also video meta data with chunks adding functionality and most importantly as it uses TCP, the video quality is guaranteed . On the other hand, WebRTC uses combination of TCP and UDP, which result into poor quality at some point of time due to lost packet. WebRTC is more reliable for real time communication like video calling, peer to peer communication etc.
Designing youtube is a very large example. The outcome of building such a system will only result in a very vague solution and it might not be that helpful. I would love to see designing videos of different components of youtube (example, there will be a lot of details and tradeoffs required in uploader and splitter service) instead of whole youtube and going a bit more in detail. There are a lot of creators who create such vague system design videos, but I would highly appreciate if any indian creator makes system design videos that are actually practical and are in much more depth. This will highly benefit the tech community. BTW love the content of this channel. Hope to see such good content in future too. 😊
Hey, you see so many educators teaching like this because this is what is expected in interviews and people are scared of. But it’s a good feedback and an interesting challenge, I assure you that I will come up with such videos 😇
i am commenting this comment now i m going to recheck this comment after 3 years , lets see at that time in which position i am working on at what salary , currently iam student doing mca from nitk....
16:46 A user having lots of videos would mean a coloumn in user table with data as array of videoID/ video URLs. This would make the table unnormalised (breaking 1NF). I think a better way would be to have userID as foriegn key in video info table (videoId, videoURL, userId).
Many times people choose to have denormalized data just to avoid joins.....because if you are trying to build highly scalable database, you need to shard the data and if you are going with normalized data then might need to join data from two shards which is very expensive as the data from different shards need to be brought to a single machine first for processing the join.
When you say that the splitter service will be splitting a video using a queuing service like RabbitMq, what do you really mean? Just using terms like splitting will happen using RabbitMq doesn't make any sense. RabbitMq is a MessageQueuing service i.e. something similar to AWS SQS wherein you send messages from a client to a server or vice versa. The input to such a splitting service can't be an entire video rather the video needs to be uploaded into an archival service for instance an S3 bucket and the path to the video must be passed to the splitting service in a RabbitMq message where the splitting service will then start to chunkify the video and do miscellaneous things with it.
Upload to view ratio might be a lot lower than 1:100, I guess. About TCP vs UDP, apart from consistency and quality, TCP allows the user to seek back. WebRTC is also an expensive choice btw, and is used for real-time use cases only. Overall feedback: 1. The information about ABR and the manifest file was interesting. 2. Designing RUclips is a huge topic, but nice that you covered the basics well. It will be amazing to see more granular and detailed videos for each sub-topic. 3. Didn't feel like an interview, but was a good discussion. 4. Good video overall. Thanks. 👍
The way you explain RUclips system design is truly commendable. We also believe in making these concepts accessible by makin video on system design of Microsoft teams
These discussions are mind refreshing as there are two different perspective of thinking for the same system, one is coder and other is a system designer. As a coder I can say she’s amazing at doing it theoretically with explaining it but with a practical coder, it even becomes more clearer to understand and design a better system all together ❤❤
Thanks Keerti and Harkirat. I liked the format of the video. It was more like a discussion rather than an interview. This led to a very free flowing conversation. Looking forward to more! :)
I have my system design interview today and I was tensed as I can build real systems but fumble in these interviews because of relating everything with actual implementation just like Harkirat here... But this relieved me as I'm not the only one.
As much as I enjoy your videos / content and appreciate the fact that you take out time to do all this great work by sharing your knowledge and experience, it makes me kinda wonder if I over value your work. Me being an ex-Flight Engineer and understanding nearly everything you discuss, makes me think that you need to UP your game. Much more depth is expected from you. Sorry for blowing the heat, but if it improves the overall dynamics of coming to your channel and viewing your content, then it is worth to share a thought honestly. And Yes, we're it your dad and you, I would have totally be happy. But two icons talking meager...I better demand more.
There are about 120 million daily active users on youtube. And 2.7 billion monthly active users. I think she got confused between daily and monthly.. since 2.5 billion per day would just be insane
Humble K meets a bit of know it all H ..I am subscribed to both for the knowledge but would say K is next level in terms of humility . hope H learnt a thing or two .. nice video in terms of content .
Hey Keerti, loved the video. But please go more in-depth into why and how, and the tradeoffs. Start simple, go in-depth, then expand the functionalities. Thanks a ton. Get to learn a lot.
@KeerthiPurswani another great discussion over designing RUclips with @harkirat1. I have a suggestion and a question. Suggestion - On the DB design how about having channels table with unique channelID which gets referred in the users table as foreign key. Channels table will have S3 bucket ID containing all the video uploads of a user. Question- Will there be multiple manifest files corresponding to different bit rates or one file will contain all the chunks of different bit rates? How the switch between the bit rates happen depend on the bandwidth?
I wish the real interviews are as interactive as this. But no, this will not happen because in real life the interviewers think they designed all of the greatest applications in the world and have a ton of ego driving them.
nice content, really looking forward for your upcoming you-tubes component wise videos which will explain more minute components in more detail. keep up the good work !
Again, there is one more flaw. Chunking should be done on the client itself. The entire use of chunking is eliminated if we need to do it at the service
It's a very high level design, if you can directly stream your data to s3 then why do we need splitter service? Also your encoding service will anyways going to create the hls chunks
Sorry if I'm wrong and I'm quite new to system design but curious about this aspect: storing video URLs in the user data table. Wouldn't this practice potentially violate solid principles? 18:00
one more question sorry : I take it the upload service is classed as a micro service and not a monolithic one as the upload is just one service we are demonstrating here..there will be other services as well( I don't know what but just have a. feeling there are)
@@KeertiPurswani Hi keerti, so will they have separate load balancers? Or different services have common load balancer shared between them in a microservices architecture?
Hi, I think it's wrong choice to store videoId in the user table instead we should store the user ID for each video in the video table so that whenever we query our video table with a user id we can get all the videos regarding that user.
What this cse branch is Padho Padhao Job se kamao E commerce pe tie up kar lo Free lance Remote Recruitment refeerral earn Foreign transfer ... Ahh i hate my chemical engg brancg
Can anyone elaborate a bit what is S3 or Object storage they mentioned to store video contents while discussing database. Is it Amazon S3. Sorry I am kind of newbie
These guys are masters at their respective field. If anyone who is thinking of getting at their level coming from a low tier college, non tech, different work experience with not much skills then they need atleast 10+ years of experience and even then it will be difficult. These guys are really smart, high iq hard working folks of our country.
Mam the upload service gets the whole video from the user before sending it to splitter right, why do we need splitter the only pre processing that is required is encoding the video right , what other pre processing is required for the video to be split into chunks?
also the CDN, does every cdn servers distributed accross the world have all the databse content cached into it? also how does security in the cdn works? does the client directly communicate with cdn? but the auth occurs on the server right
what is the best way to differentiate a functional requirement to an NFR..is there like a thumb rule ? how does one make that split to say this is FR versus NFR?
generally if you notice NFRs are basically the qualities (scalability, security, reliability etc) that the system should have not the actual functions.
For FR - think of the functions that system has to be support. For NFR - think of the quality attributes or behaviour. Latency, consistency and all tell how the system behaves vs upload and watch are its functions. Hope you understood?
I started watching the video with interest but soon it became like a show off than a discussion … Harkirat could have contributed more if you would have let him
Go from this basic level to advanced level in 5-Week LIVE HLD Course - www.educosys.com
Please give discount code di extra discount code
For whom you have designed the course?
harkirat X 😂harikirat V
The video started with Keerti interviewing Harkirat; and ended with a 180-degree role reversal. Harkirat is a smooth operator. 😂
He is not a smooth operator. He lacks System design experience & doesn't know many basic things. Being Overconfidence over his face, & doesn't even behaving like a interviewee. Hence Interviewer took the responsibility to continue the design, because she needed content for RUclips video.
@@dakshayagarwal2560 +1 It all started with him not listing watch feature in functional requirements and then saying no idea in non functional requirements. He failed the interview in the first 2 minutes.
Harikirat is god
😄😄
This was never an interview, this is just a discussion
The way keerti is explaining the concepts and logic shows she has more theoretical knowledge and Harkirat is being more practical here like there will be need of updating user’s profile picture if storing that in meta data etc… and i think that should be the approach to any system design problem which is way more than just drawing boxes.
Harkirat has now become a common face in Indian Youtech community ❤
This guy has very good real world work experience which is very clear from his questions and suggestions while Keerti has a lot of theoretical knowledge, just an observation.
The fact that Harkirat's channel has grown massively over the last few months is because he has this original element in his content and ppl can relate with what he says. Being someone who's pivoting from Non tech to Tech, I'm truly inspired by Harkirat.
From this awesome System design discussion I could clearly see that these two folks have a very different thought process. Where Keerti likes to discuss about the Highlevel system design. And The dude likes to see the knitty gritty of the problem and visualizes how it will actually look physically.
Great informative video! Just to add more on TCP/UDP part, RUclips and other social media platforms where live streaming is performed, they use Dynamic Adaptive Streaming over HTTP (DASH) protocol which is based on TCP since it gives adaptive bit rate streaming - different resolutions , also video meta data with chunks adding functionality and most importantly as it uses TCP, the video quality is guaranteed . On the other hand, WebRTC uses combination of TCP and UDP, which result into poor quality at some point of time due to lost packet. WebRTC is more reliable for real time communication like video calling, peer to peer communication etc.
That tcp and udp discussion was superb..
Thanks keerti di for this wonderful video ❤❤
Designing youtube is a very large example. The outcome of building such a system will only result in a very vague solution and it might not be that helpful. I would love to see designing videos of different components of youtube (example, there will be a lot of details and tradeoffs required in uploader and splitter service) instead of whole youtube and going a bit more in detail. There are a lot of creators who create such vague system design videos, but I would highly appreciate if any indian creator makes system design videos that are actually practical and are in much more depth. This will highly benefit the tech community. BTW love the content of this channel. Hope to see such good content in future too. 😊
Hey, you see so many educators teaching like this because this is what is expected in interviews and people are scared of. But it’s a good feedback and an interesting challenge, I assure you that I will come up with such videos 😇
I love your attitude of accepting such challenges ❤❤
@@KeertiPurswani bro youtube has 2.3 billion user per month and not per day , also they only have 122 million daily active users.
i am commenting this comment now i m going to recheck this comment after 3 years , lets see at that time in which position i am working on at what salary , currently iam student doing mca from nitk....
All wanted to help students😂
16:46 A user having lots of videos would mean a coloumn in user table with data as array of videoID/ video URLs. This would make the table unnormalised (breaking 1NF). I think a better way would be to have userID as foriegn key in video info table (videoId, videoURL, userId).
Many times people choose to have denormalized data just to avoid joins.....because if you are trying to build highly scalable database, you need to shard the data and if you are going with normalized data then might need to join data from two shards which is very expensive as the data from different shards need to be brought to a single machine first for processing the join.
When you say that the splitter service will be splitting a video using a queuing service like RabbitMq, what do you really mean? Just using terms like splitting will happen using RabbitMq doesn't make any sense. RabbitMq is a MessageQueuing service i.e. something similar to AWS SQS wherein you send messages from a client to a server or vice versa. The input to such a splitting service can't be an entire video rather the video needs to be uploaded into an archival service for instance an S3 bucket and the path to the video must be passed to the splitting service in a RabbitMq message where the splitting service will then start to chunkify the video and do miscellaneous things with it.
20:20 this is how you should think even the others knows too . just by using logical thinking .
Upload to view ratio might be a lot lower than 1:100, I guess.
About TCP vs UDP, apart from consistency and quality, TCP allows the user to seek back. WebRTC is also an expensive choice btw, and is used for real-time use cases only.
Overall feedback:
1. The information about ABR and the manifest file was interesting.
2. Designing RUclips is a huge topic, but nice that you covered the basics well. It will be amazing to see more granular and detailed videos for each sub-topic.
3. Didn't feel like an interview, but was a good discussion.
4. Good video overall. Thanks. 👍
The way you explain RUclips system design is truly commendable. We also believe in making these concepts accessible by makin video on system design of Microsoft teams
bro joined goldman and literally became a gold man 😮😂
very nice walkthrough of the system design, kudos harkirat for opening up the network tab
Don't mess with Harkirat, he knows everything
Yessss
These discussions are mind refreshing as there are two different perspective of thinking for the same system, one is coder and other is a system designer.
As a coder I can say she’s amazing at doing it theoretically with explaining it but with a practical coder, it even becomes more clearer to understand and design a better system all together ❤❤
Thanks Keerti and Harkirat. I liked the format of the video. It was more like a discussion rather than an interview. This led to a very free flowing conversation. Looking forward to more! :)
I have my system design interview today and I was tensed as I can build real systems but fumble in these interviews because of relating everything with actual implementation just like Harkirat here... But this relieved me as I'm not the only one.
Believe user Id should not be used as it creates a security gap . Using api key or cookie to get the user Id in backend would be the right approach.
Thank You Mam 👏👏👏 ,
It's really getting More Information about System Design, Please Keep It Mam ,Do More Video Like This🙏 .
Nice to see you back with the interview video. I love your interview video and it's very helpful, keep shining.
Thank you so much! Means a lot 😇
A littile correction is 2.7 bilion is monthly active user not daily.Daily active user is 127 milion.Great work
"I agree with you I know about it" LMAO that was funny
He is Damn honest dev god🔥
As much as I enjoy your videos / content and appreciate the fact that you take out time to do all this great work by sharing your knowledge and experience, it makes me kinda wonder if I over value your work. Me being an ex-Flight Engineer and understanding nearly everything you discuss, makes me think that you need to UP your game. Much more depth is expected from you. Sorry for blowing the heat, but if it improves the overall dynamics of coming to your channel and viewing your content, then it is worth to share a thought honestly. And Yes, we're it your dad and you, I would have totally be happy. But two icons talking meager...I better demand more.
There are about 120 million daily active users on youtube. And 2.7 billion monthly active users. I think she got confused between daily and monthly.. since 2.5 billion per day would just be insane
Ok who is the interviewer here 😂
Hari so smoothly reversed the role
the first study video i enjoing so much , i think thats video going to my life , becouse know i devloped intreast in system design
TCP/UDP discussion was great.
@KeertiPurswani
Just to clarify 2.1 Billion are monthly active users not daily, its approximately 122 million/day.
Humble K meets a bit of know it all H ..I am subscribed to both for the knowledge but would say K is next level in terms of humility . hope H learnt a thing or two .. nice video in terms of content .
H earns in crores sitting in India from the US. Pride will be there.
Which note taking app is this ?
Hey Keerti, loved the video. But please go more in-depth into why and how, and the tradeoffs.
Start simple, go in-depth, then expand the functionalities. Thanks a ton. Get to learn a lot.
Pushing the algorithm ❤
@KeerthiPurswani another great discussion over designing RUclips with @harkirat1. I have a suggestion and a question.
Suggestion - On the DB design how about having channels table with unique channelID which gets referred in the users table as foreign key. Channels table will have S3 bucket ID containing all the video uploads of a user.
Question- Will there be multiple manifest files corresponding to different bit rates or one file will contain all the chunks of different bit rates? How the switch between the bit rates happen depend on the bandwidth?
Why not refer to the user in the channels table with the user ID?
Genuine question*
Very useful discussion and excellent piece of content❤👌. Sharing it with my team for learning. Thank you for your contributions to the community.. 😊
I wish the real interviews are as interactive as this. But no, this will not happen because in real life the interviewers think they designed all of the greatest applications in the world and have a ton of ego driving them.
Commenting so I get this more of these on my feed.
nice content, really looking forward for your upcoming you-tubes component wise videos which will explain more minute components in more detail.
keep up the good work !
The discussion in this video is pure gold 🌟
CAP= in the event of network partition you can either get C or A
Great Discussion, Subscribed🤟
who is interviewing who here? I could not say.
Again, there is one more flaw. Chunking should be done on the client itself. The entire use of chunking is eliminated if we need to do it at the service
Who is interviewer and who is interviewee
I watch 300-400 shorts a day easily .on weekends it is double triple.
Hari kirat🤣🤣
Great discussion !! Learned a lot.
It's a very high level design, if you can directly stream your data to s3 then why do we need splitter service? Also your encoding service will anyways going to create the hls chunks
Very nicely explained
Just finished watching. Great video!! 👍
Thanks! 😇
Thank you for the system design video. What is the tool name that yiu are using as whiye board for design amd writing the requirements
for beginners who comes from different backgrounds can you please make a roadmap for them how to enter into sde role
Sorry if I'm wrong and I'm quite new to system design but curious about this aspect: storing video URLs in the user data table. Wouldn't this practice potentially violate solid principles? 18:00
Great going. keep up the good work
one more question sorry : I take it the upload service is classed as a micro service and not a monolithic one as the upload is just one service we are demonstrating here..there will be other services as well( I don't know what but just have a. feeling there are)
Yes yes! If the entire logic of upload, watch and other things were in one service then it would have been monolithic. These are microservices 😇
@@KeertiPurswani Hi keerti, so will they have separate load balancers?
Or different services have common load balancer shared between them in a microservices architecture?
What a lovey way to explain
bro was not allowed to speak in his interview :/
@13:44 why don't we encode video first, then divide in chunks, why I want splitter service to have real video data ?
How are chunks handled, how does the actual storage work?
Hi, I think it's wrong choice to store videoId in the user table instead we should store the user ID for each video in the video table so that whenever we query our video table with a user id we can get all the videos regarding that user.
27:56 server sending the next *chunk* in higer bitrate not the next *packet* . it nothing to do with packet management.
beautifully done
MongoDB is not for write heavy. why cassandra and why not mogodb.
Is this an interview or a masterclass for the interviewee?? Whatever it is, loved the process..
Awesome video❤
Can we use it and extend it for e-learning system design ?
this is amazing!
For Likes/Dislike, shares Graph DB would have been better choice
All those estimations went in vain, it is no where justified in the designing.
makes sense ...❤
22:05 when does it checks the plagiarism?
What this cse branch is
Padho
Padhao
Job se kamao
E commerce pe tie up kar lo
Free lance
Remote
Recruitment refeerral earn
Foreign transfer
...
Ahh i hate my chemical engg brancg
Same ... Just going to start core chemical eng 3rd sem in this July.
This was awesome video.
Can you make system design for book my show and how to prevent double booking?
It really help us.
Thanks !!
We shouldn't be sending userId in any post or get request. This will be a flaw in security.
What an idea !
Thank you di! Would this also be important for people who want to work as ML engineers?
Explain protocols also
Why no one talks about protocols HLS, Dash etc hearing about them first time😢
Can anyone elaborate a bit what is S3 or Object storage they mentioned to store video contents while discussing database. Is it Amazon S3. Sorry I am kind of newbie
AMAZON S3 is a blob storage where we store images, videos and other data. it returns url which can be used for fetching that stored data.
How to handle corrupt files or malicious files upload?
Interesting content!!!
Glad you like it! 😇
So She was here to sell her course.
First comment! Great content!
Thank you! 😇
Looks like keerti is on harkirat channel😂
These guys are masters at their respective field. If anyone who is thinking of getting at their level coming from a low tier college, non tech, different work experience with not much skills then they need atleast 10+ years of experience and even then it will be difficult. These guys are really smart, high iq hard working folks of our country.
How do we figure the number of chunks video needs be broken down into? And each packets size?
I think the chunks have a predefined size limit. Like how mongodb breaks blob into chunks of 250kb when using gridfs... that's my assumption for yt..
Very informative
Mam the upload service gets the whole video from the user before sending it to splitter right, why do we need splitter the only pre processing that is required is encoding the video right , what other pre processing is required for the video to be split into chunks?
also the CDN, does every cdn servers distributed accross the world have all the databse content cached into it? also how does security in the cdn works? does the client directly communicate with cdn? but the auth occurs on the server right
what is the best way to differentiate a functional requirement to an NFR..is there like a thumb rule ? how does one make that split to say this is FR versus NFR?
generally if you notice NFRs are basically the qualities (scalability, security, reliability etc) that the system should have not the actual functions.
For FR - think of the functions that system has to be support. For NFR - think of the quality attributes or behaviour. Latency, consistency and all tell how the system behaves vs upload and watch are its functions. Hope you understood?
@@prasannaagnihotri430 Got it , so Security comes under NFR --like designing Access Control and defence in depth solutions are NFRs..
Before 2018, system design was not a thing… what?
Guess all engineers are teachers😂
I started watching the video with interest but soon it became like a show off than a discussion … Harkirat could have contributed more if you would have let him
so the interviewer always writes on screen? I don't have a digital pen
When did I say this is mock interview
why are we storing video packets in databse? Why not s3?
Dont think video packets are being stored in the DB. Their location (urls) might be, but all chunks would be stored in S3
#JusticeForMoumita
Hi Keerthi maam. is your HLD course taught in english or Hindi?
Hey, it’s taught in english. All details mentioned on the site. Do check it out! 😇