Introduction to NoSQL databases

  Рет қаралды 784,431

Gaurav Sen

Gaurav Sen

Күн бұрын

Пікірлер: 794
@RameshAdavi
@RameshAdavi 5 жыл бұрын
Great Teaching Skills. As a 63 year old, I found learning from a youngster, really cool!
@gkcs
@gkcs 5 жыл бұрын
Thank you!
@paragsomani5696
@paragsomani5696 4 жыл бұрын
I m 44 but wanted to say the same.Now no need.
@N_poet
@N_poet 4 жыл бұрын
i m 30+ and fan of them too
@codelucky
@codelucky 3 жыл бұрын
You're 64 and still leaning. I got to learn from you. Take care, stay safe.
@pran322
@pran322 3 жыл бұрын
Me too; learning at 55:-) from GKCS
@SurajSharma-sd3ws
@SurajSharma-sd3ws 5 жыл бұрын
Gaurav, you have tremendous ability to articulate modern day computer science concepts. Its great to see someone so young having this charisma and tech flair which is a rare combo. I have been in software for 20 years and sadly i was never taught like this or then around early 2000's there were no youtube channels like yours. You are redefining online learning with your videos. Keep it up mate.
@gkcs
@gkcs 5 жыл бұрын
Thank you Suraj!
@tarunpothulapati3425
@tarunpothulapati3425 5 жыл бұрын
Great Video! A small point to add, Most of the NoSQL offerings also offer, Consistency levels for users to choose. So, If I want to make sure my users read always consistent data I can have strong consistency which means a write is acknowledged only when a quorum of replicas have also acknowledged it. This makes sure, consistency is present even when one of the replicas go down. But obviously the tradeoff is the writes are slow. If availability is preferred over consistency, then Eventual consistency can be choosen in which the writes are acknowledged when the present replica writes it in memory, hoping that all other replicas catch up with the write "eventually" .
@gkcs
@gkcs 5 жыл бұрын
Agree! This is what allows us to aggregate and read fast on NoSQL. I made a mistake in the video by stating that reads are slow. Reads are in fact faster in NoSQL than standard RDBMS as long as consistency requirements are relaxed.
@lakshaysagarrana3965
@lakshaysagarrana3965 5 жыл бұрын
a great summary of cap ❤️✔️
@InvestWithRishi
@InvestWithRishi 5 жыл бұрын
Writes are fast in Cassandra if replication factor is local_One. Although if you change it to quorum then obviously it adds to the throughput of the transaction. It’s all about the system requirement at the end of the day. 😃
@ananyasharma1201
@ananyasharma1201 4 жыл бұрын
@@gkcs Has anything changed with MongoDB 4.2, are the writes any faster considering we get to keep our consistency? Also, We know that NoSQLs go for Availability over Consistency but with MongoDB 4.2, you can guarantee the consistency and also I get to keep my availability by scaling across many shards. MongoDB 4.2 (FULLY ACID kzbin.info/www/bejne/n6bNZXueaqqErNE) They claim that they're "the only database to fully combine the ACID guarantees of traditional relational databases with the speed, flexibility, and power of the document model, and an intelligent distributed systems design to scale-out and place data where you need it." (www.mongodb.com/collateral/mongodb-multi-document-acid-transactions) Which also puts me to a question that why should I use RDBMS over MongoDB when with horizontal scaling I will have a hard time but with MongoDB 4.2 it's built-in with all it brings. Does MongoDB > RDBMS in 2020 after the 4.2?
@mdxytop
@mdxytop 4 жыл бұрын
@@ananyasharma1201 "why should I use RDBMS over MongoDB " -> because MongoDB is buggy as fuck. It's not reliable.
@andys7384
@andys7384 5 жыл бұрын
It is a difficult skill to be able to understand/comprehend the lower layers of a given technology AND also be able to present it in a clear, concise manner that many can grasp. You have this skill and are able to present the data in a way that is simple with stacks that are complex. This is why being an "instructor" or "presenter" requires skills beyond just knowing the technology really well. Anyway, I appreciate the videos as its a wealth of valuable information!
@gkcs
@gkcs 5 жыл бұрын
Thank you!
@azurelearningsimplified1349
@azurelearningsimplified1349 3 жыл бұрын
Was just randomly browsing to know about NOSQL and I must say i couldn't move forward without watching full video and I feel confident with the concept. Thank you Gaurav
@RamziLebanon
@RamziLebanon 5 жыл бұрын
In a strange way, I watched this Video like a proud father lol You are amazing and it shows how much you care to explain rather than show off.
@gkcs
@gkcs 5 жыл бұрын
Thanks Ramzi!
@karthikeyansrinivasan52
@karthikeyansrinivasan52 4 жыл бұрын
When a Non DB guy can understand this.... there is nothing else as better ! Thanks a Ton for you Videos. Your Videos are one of the things that helped me through 2020 Lockdown.
@MdSheraj
@MdSheraj 3 жыл бұрын
In Cassandra, “strong consistency” is typically expressed as W + R > RF, where W is the write consistency level, R is the read consistency level, and RF is the replication factor.
@guruprashanthrao1093
@guruprashanthrao1093 5 жыл бұрын
Truth has been spoken at 9:26 "inner join,outer join,left join the things that we didn't read in college"
@deeproy7292
@deeproy7292 4 жыл бұрын
very true bro...after working in a job only we start to get to understand the real use of join and group by😜
@sandeepmishra5145
@sandeepmishra5145 4 жыл бұрын
College mai toh kuch bhi nhi batate hume khud hi krna padta h..😅😅😅 gfg h na
@iamshadmirza
@iamshadmirza 5 жыл бұрын
I am wondering how much time it took you to grasp this much knowledge. Recently followed your channel and it feels like I found a treasure of knowledge. I love to learn and this is a delight.
@gkcs
@gkcs 5 жыл бұрын
Thank you!
@deepanshuh_
@deepanshuh_ 5 жыл бұрын
Tomorrow is my Big data and data analytics exam and You uploaded this...........what a coincidence!
@gkcs
@gkcs 5 жыл бұрын
Yey!
@br34k3r2
@br34k3r2 5 жыл бұрын
kaisa hua exam XD
@shubhamqweasd
@shubhamqweasd 5 жыл бұрын
Great video as always :D, Just one correction , data is kept in self sorted structures like (AVL/ Red-Black Trees) in memory, and once the memory is past some threshold value (say ~50kb), then the entire memtable(the self sorted trees) are dumped into a SSTable (on disk) which is efficient as the data is already sorted.
@Happymejoyus
@Happymejoyus 4 жыл бұрын
wow, I am understanding now many things which I had already worked on and faced the technical issues and never used to get the "why" part from my architect's talks. Thank you Gaurav.
@paulkersey2424
@paulkersey2424 3 жыл бұрын
Then you were never an actual architect. Most people think they are architects, it takes time... Unless you got 20 years in multiple industries, companies, environments you can't be truly an architect. Working in MS, JAVA, WEB, Service, Networking, Infrastructure, CICD, UX, Security from every possible way I think I have a better understanding. This video is your novices or juniors not architects
@Happymejoyus
@Happymejoyus 3 жыл бұрын
@@paulkersey2424 I'm not.. I was a developer. I mean to say.. my project's architect - my boss. 😳
@ShubhamJain-kb7zf
@ShubhamJain-kb7zf 5 жыл бұрын
One of the best explanation for nosql over youtube...so far... Keep up the good work
@gkcs
@gkcs 5 жыл бұрын
Thanks!
@aishr11
@aishr11 9 ай бұрын
Superb teaching! Very intuitive, practical and actionable. I'm glad I found this channel & everyone who finds this is lucky. I wish our high school or college teachers would be this adept at teaching. Kudos!
@vaibhavsouveer
@vaibhavsouveer 3 жыл бұрын
Great video Gaurav. You have simplified it so much. I have one doubt though... At 6.20 when you are mentioning the 4th point, you say NoSQL are good for metrics/analysis, etc. because it easier to perform operations like average age, total salary, etc. At 7.30 you are saying these are not read optimized because data will have to be read from each blob of data and then perform some operation like sum or average. I am confused about this part.
@victorcaldentey6295
@victorcaldentey6295 5 жыл бұрын
About Cassandra, you are explaining the concept of Consistency Hashing, is used in Cassandra but also in many other systems!
@juancpgo
@juancpgo 5 жыл бұрын
Sir, you are truly a great teacher. Thanks for sharing your knowledge so wisely.
@gkcs
@gkcs 5 жыл бұрын
Thank you!
@老谈
@老谈 3 жыл бұрын
This is misleading. Not all NoSQL store data as a key-value pair. What you are talking about is only a subset of NoSQL. There are 4 meain types of NoSQL databases: Document, key-value, wide-column and graph.
@karthikb6828
@karthikb6828 5 жыл бұрын
Hi Gaurav, Thanks for this great video and all other videos. I'm extremely benefiting by your videos. Basically, I'm a Mechanical Engineering graduate, with zero CS/dev background but currently work as a Technical Writer with one of top technology Giant in the world. I want to transition to product management and one of areas I lack is technical design. Yours videos are helping me in those aspects. Kudos your great effort. Appreciate every bit of it.
@gkcs
@gkcs 5 жыл бұрын
Thanks Karthik!
@rajcodingworld7768
@rajcodingworld7768 5 жыл бұрын
21:50 Two corrections 1) Cassandra do not store log file in-memory. Rather it stores on disk. That's how it can recover from during failures 2) Cassandra do not append in-memory it rather appends to commit log on disk. So, in-memory the data is sorted Memtable. When it reaches certain limit then it flushes to the disk on SSTable
@debsworld3784
@debsworld3784 Жыл бұрын
Great video , it’s like going back to college after 14 years in the industry .. Thanks and keep it up
@hellbird1381
@hellbird1381 4 жыл бұрын
omg bhai..u jus like my frnd who teaches me one day b4 exam and i get salvation enlightened whole universe gets cleared which i try to understand and learn whole 6 months with teachers faculty staff and didn't understand :)
@msvardhan19
@msvardhan19 2 жыл бұрын
Hey, Gaurav. I appreciate all of the work you put into this series. I had no prior knowledge of system design, but after watching these videos in 3 days, I was able to pass the system design round at a reputable company. I can't thank you enough for this.
@gkcs
@gkcs 2 жыл бұрын
That's amazing, congratulations!
@kratitiwari2850
@kratitiwari2850 3 жыл бұрын
Thanks dude for explaining Cassandra in such a simple manner.. kudos
@naveentrivedi8074
@naveentrivedi8074 5 жыл бұрын
This is by far the best explanation for SQL vs No SQL DBs. Kudos.
@prathibhapb
@prathibhapb 3 жыл бұрын
7:35 - usually most NoSQL databases have secondary indexes that make that kind of querying faster. Great video, thanks
@NiiAnikin
@NiiAnikin 4 жыл бұрын
Wow. The first intuitive video tutorial on NoSQL ... Finally
@griseldabalmaceda4943
@griseldabalmaceda4943 5 жыл бұрын
THANK YOU SO MUCH!! Read my reading assignment for my NoSQL class and understood most of the things but needed to see all these new concepts in action! Thank you for providing an excellent run through and example! LIKED AND SUBSCRIBED!!!
@gkcs
@gkcs 5 жыл бұрын
Glad to hear that!
@pallavisingh2912
@pallavisingh2912 5 жыл бұрын
You've made System design a real fun concept to read about! Thanks a lot
@gkcs
@gkcs 5 жыл бұрын
Thanks Pallavi!
@learnandsharelive
@learnandsharelive 4 жыл бұрын
How I look RDBMS and NoSQL databases are used based on the requirements or use cases. So, while designing any application we need to understand them first which @GS has done very well. I love your presentation skills @GS and I won't mind mentioning the same in your videos. Keep it up👍
@ManishPushkarVideos
@ManishPushkarVideos 4 жыл бұрын
Every time I am preparing for Interview, I will revise all the topics by watching your videos. Thanks for the awesome content.
@justicedoesntexist1919
@justicedoesntexist1919 2 жыл бұрын
The cute double role in the beginning gets me in his videos!
@susmitapatil4847
@susmitapatil4847 8 ай бұрын
Great teacher I ever saw. I was really confused about the system design concept but after watching your videos it is very clear. Really thanks for such amazing content. Keep doing good work.
@gkcs
@gkcs 8 ай бұрын
Thank you!
@ARCHITSANGHVI13
@ARCHITSANGHVI13 5 жыл бұрын
The way you represent your knowledge is just amazing. Many people on youtube have good knowledge but don't know how to represent their knowledge to others and explain them. Your way of explaining is just fabulous. Enjoying system design series as a Netflix series. haha.
@gkcs
@gkcs 5 жыл бұрын
Haha 😁
@mihirit7137
@mihirit7137 2 жыл бұрын
the editing in the first 2 mins was on point!
@rshankarVids
@rshankarVids 4 жыл бұрын
The video is great, with lots of information, but there are many controversial statements like: 1. Joins are pretty expensive. 2. You need locks to maintain consistency when adding a new column. 3. NoSQL data bases can be optimized for reads. 4. The example taken for the noSQL database is very naive too. You can have N number of columns storing the same data in deserialized format. etc. The video gives a good bookish knowledge but be ready to get cross questioned when you use the concepts.
@AnkitaNallana
@AnkitaNallana 4 жыл бұрын
Great video as always! Really enjoyed the bit where you talk about major applications using RDBMS (the intro). Thank you for this - I learnt a lot!
@gkcs
@gkcs 4 жыл бұрын
Thank you 😁
@ArjunSingh-oo1mh
@ArjunSingh-oo1mh 5 жыл бұрын
the great thing in your video is that you give practical examples. THANK YOU. I will continue watching your videos.
@mathematicalninja2756
@mathematicalninja2756 5 жыл бұрын
dude this format is awesome i just love your channel man may you get all success in life
@gkcs
@gkcs 5 жыл бұрын
Thank you!
@borisvoychev7534
@borisvoychev7534 3 жыл бұрын
Great Video Gaurav! I just want to add that apache Cassandra use LSM (Log Structured Merge Trees). The idea is that they want to avoid updating records when using SSD(Solid State Drive) due to the fact that they allow X number of updates before they die. Using LSM they just append new values no matter if they exists or no and as you mentioned they mark the old records with a tombstones.
@gkcs
@gkcs 3 жыл бұрын
kzbin.info/www/bejne/lWbZo5mrrM2porM
@viveksharma9564
@viveksharma9564 4 жыл бұрын
Damn!! why does liking something complex gives me a vicarious feel of being intelligent?
@skdh2006
@skdh2006 5 жыл бұрын
Guarav, thank you for the awesome videos. I am applying for entry-level software engineering jobs and this is helping me a lot for companies which test system design skill of their candidates.
@gkcs
@gkcs 5 жыл бұрын
Great to hear that 😁
@arezanet
@arezanet 2 жыл бұрын
thank you. i finally understand 'schema'. i'm only 4:44 in, paused the video to post this.
@designrknight
@designrknight 4 жыл бұрын
Just to put an example, Royal Bank of Scotland uses MongoDB, a No-SQL database. So both SQL and No-SQL are in present day screnario, equally lucrative
@interviewchamp
@interviewchamp 5 жыл бұрын
This boy is really good.Great content
@christophersamk5584
@christophersamk5584 5 жыл бұрын
Regarding quorum of 3 and missing data, if you want your system to be highly consistent, you can do it while writing the data. Say, if you have 3 replicas, make sure the write succeeds only if they data is written on all the three nodes. This obviously has some drawbacks of delay in write but if consistency is all you care about, this approach would help overcome missing data. In CAP, you are compromising on availability here.
@gkcs
@gkcs 5 жыл бұрын
That's correct.
@KartheekGanesh
@KartheekGanesh 5 жыл бұрын
"Why don't we become optimists as engineers?" 🤣🤣 Yea right I wish. Thanks for the upload !
@gkcs
@gkcs 5 жыл бұрын
Hahaha 😛
@jksharma7
@jksharma7 5 жыл бұрын
Mr. Gaurav..... You are a BORN TEACHER Sir.... Thanks.
@gkcs
@gkcs 5 жыл бұрын
Thank you!
@RohitSharma-cw2ii
@RohitSharma-cw2ii 5 жыл бұрын
Great little bro..you looks so young but good skill on explanation..
@gkcs
@gkcs 5 жыл бұрын
Thanks!
@samarthurs8000
@samarthurs8000 5 жыл бұрын
Greetings from Munich, Germany. Great video Gaurav. It needs a lot of preparation behind such great content. Kudos man!
@bilguunchinzorig9532
@bilguunchinzorig9532 5 жыл бұрын
this is the first IT explanation video made by Indian guy, that I enjoyed watching
@gkcs
@gkcs 5 жыл бұрын
I hope you find many more in future 😁
@ansumansatapathy8914
@ansumansatapathy8914 5 жыл бұрын
Maybe start looking at people as the person instead of viewing them in terms of race, nationality, gender. etc.
@deepak9976
@deepak9976 5 жыл бұрын
if your are in java u should watch tutorial from java brains .. ur perception will change.
@jayaram.ramanarayanan
@jayaram.ramanarayanan 5 жыл бұрын
11 seconds passed and I gave a like to the video. Great job!
@gkcs
@gkcs 5 жыл бұрын
😁
@sdfg204
@sdfg204 5 жыл бұрын
Awesome video bro, very simple explanation of pros and cons. Also good coverage with the cassandra cluster. Some add-on information: All companies at this time, do use a combination of these DBs, obviously using RDBMS at priority transactions. NoSQL though is maintained for ever-changing attributes, which are of lesser importance, e.g. Editable/non editable comments, vote count etc., basically every attribute that company can term under eventual consistency(refer computerphile on ytb). The reason here is because of the nature of NoSQL being a document-based db, one could simply queue all the requests onto isps or the client side, and merge these updates in form of an inverted tree. NoSQL is also used extensively as cache for Sql based data, which needs extensive join operations, or simply for basic but simultaneous queries. In this way many companies buy time for development of a proper solution(db/model overhaul is last of them as opposed to the obvious belief) without losing trust amongst consumers. Cluster of NoSQL db would be of slightly much less use than of sql based one. NoSQL is made majorly for handling client-side, because of its state conforming nature. Its a request to discuss master slave db configuration pros and cons too, it makes your Quorom problem both simpler to understand, and also solve the scaling perspective of things, without taking any unusually extra space.
@gkcs
@gkcs 5 жыл бұрын
I will be discussing master slave soon. I am not entirely sure of your claim that NoSQL is used mainly for client side stuff though 🙂
@sdfg204
@sdfg204 5 жыл бұрын
@@gkcs mostly for handling multiple request from client, do see eventual consistency I mentioned. Obviously, its a tool with many different applications, with good use it can be made out to be anything. Just a noob, happy to learn 😉
@gkcs
@gkcs 5 жыл бұрын
I see. You are right, it has many applications :D
@techable7524
@techable7524 5 жыл бұрын
Love your videos dude! Just watched about 8 of them and I now use them in the gym because you can pretty much follow along just listening to you :-) Quick Tip: Set your camera to manual focus and increase the aperture (will keep everything in focus) a little as your camera 'hunt's for focus and is a bit distracting on the eye. Love the quality your producing so please keep them coming!
@gkcs
@gkcs 5 жыл бұрын
Thanks! I'll make sure to apply these tips 😁
@gero8049
@gero8049 3 жыл бұрын
Thats the first introduction that was acctualy an introduction. Great Video.
@rakshitkoyani1655
@rakshitkoyani1655 Жыл бұрын
nice explanation. now a days very few teachers teaches on the board which is easy to grab a concept at 1st pace
@amith1989
@amith1989 4 жыл бұрын
This is the first video of yours that I saw but amazing way of explaining bro. This video is great for someone like me who had absolutely zero idea about NoSQL Databases since I have always worked with Relational Databases only. Subscribed!
@anastasianaumko923
@anastasianaumko923 Жыл бұрын
Introduction is hilarious, so cool 🤣🤣🤣 The video is elaborate and educative, thank you! 🤩
@killbuzzygamer3220
@killbuzzygamer3220 2 жыл бұрын
sir bohut badiy TARIKE SE explain kiya hain apne ......dhonnobad
@SarabjotSingh294
@SarabjotSingh294 5 жыл бұрын
Truly amazing video. So perfectly described NoSql and RDBMS. Thank you so much.
@logicsandtrolls3616
@logicsandtrolls3616 2 жыл бұрын
Nice. You could add below - 1. NoSql might have a upper limit on amount of data you can store. 2. If you have to write to multiple tables/rows at the same time and do like a group commit, this might get limited in noSql.
@fsl4faisal
@fsl4faisal 5 жыл бұрын
the beginning was some ninja editing skills..!! the video as always very informative.. Thank you..!
@gkcs
@gkcs 5 жыл бұрын
Thank you!
@swarajgupta3087
@swarajgupta3087 2 жыл бұрын
Thanks Gaurav ! Quorum: सदस्‍यों की वह न्‍यूनतम संख्‍या जिसके होने पर ही बैठक में निर्णय लिए जा सकें !
@gkcs
@gkcs 2 жыл бұрын
Wow!
@Manwithsteelnerves
@Manwithsteelnerves 4 жыл бұрын
Upcoming video idea : Give a brief on all current trending databases, pros and cons and when to pick each
@starlord9220
@starlord9220 5 жыл бұрын
😍ur content quality is increasing + information provided is clear
@gkcs
@gkcs 5 жыл бұрын
Thank you!
@ru2979
@ru2979 2 жыл бұрын
The plot of this video is dope 🔥🔥🔥
@navjhs
@navjhs 2 жыл бұрын
Gaurav....you are just awesome. What a great skill you have. Thank you.
@MrJosejohny
@MrJosejohny 5 жыл бұрын
Very crisp, clear and simple explanation Gaurav Sen ...Thanks a lot...
@yashjain-wj1eg
@yashjain-wj1eg 4 жыл бұрын
Thanks man! I was asked sharding and sql vs no sql in my interview and was able to answer them perfectly and crack the interview as well. Thanyou Again.
@gkcs
@gkcs 4 жыл бұрын
Yey, congratulations 😁
@yashjain-wj1eg
@yashjain-wj1eg 4 жыл бұрын
@@gkcs keep making such videos to help students like us! Thankyou!
@dhananjaynagargoje6487
@dhananjaynagargoje6487 5 жыл бұрын
Saturday morning breakfast while watching your video 😁
@md.abdullahal-alamin8059
@md.abdullahal-alamin8059 5 жыл бұрын
Great video. Please make a detailed video on Redis or distributed cache system
@gkcs
@gkcs 5 жыл бұрын
Coming up 😁
@JoseBlanquicetM
@JoseBlanquicetM 3 жыл бұрын
System Desgin is a great playlist. I am using it to get prepared for my interview. Thanks! Just one suggestion: I think you should talk a little bit slower, it's too much information to process so talking slower will allow people watching the video without need to stop it, analyse what you said and then resume the video :) ... It's just my opinion
@gkcs
@gkcs 3 жыл бұрын
Noted!
@serez18
@serez18 3 жыл бұрын
Great video. Very informative and well organized! I'd like to update that RavenDB is a noSQL database that offers ACID certification for transactions.
@adnanbadar6981
@adnanbadar6981 3 жыл бұрын
Very Precise, Keep it up Gaurav. Excellent Job!
@vmohakrish
@vmohakrish 2 жыл бұрын
vow are your videos always so fun.Dont know how I got to know this channel to late
@AndhraKitchenFoods
@AndhraKitchenFoods 3 жыл бұрын
Excellent presentation on NoSQL DBs.
@Manu-mr4mn
@Manu-mr4mn 5 жыл бұрын
Wow usually I avoid videos with people who are Indian or something like that, just because the accent is hard to understand and the quality is not so good. But this video is amazing! Great job, I’ve subscribed!
@gkcs
@gkcs 5 жыл бұрын
Thank you 😁
@Manu-mr4mn
@Manu-mr4mn 5 жыл бұрын
Gaurav Sen No problem! Great content I like your channel. I would love to see more videos like this! :)
@gkcs
@gkcs 5 жыл бұрын
@@Manu-mr4mn They will be coming soon!
@NileshwarShukla
@NileshwarShukla 5 жыл бұрын
Apart from technical expertise you are also trying to specialise in video effects 😊
@gkcs
@gkcs 5 жыл бұрын
Yup!
@fiveyearclub6024
@fiveyearclub6024 5 жыл бұрын
Another awesome video. I've been using mongodb successfully for 6+ years but never got into the weeds about how it compared to MySQL.
@abhijitghatnekar9347
@abhijitghatnekar9347 4 жыл бұрын
Great video, Gaurav! I wanted to add a point. In the video you mentioned a disadvantage that Joins are hard in NoSQL. When you're dealing with extremely large data-sets, you probably would want to avoid joins. If you -use a NoSQL database in a relational manner, i think its probably not worth it. In that case, you're better off using an RDBMS..
@bonniwanamaker6296
@bonniwanamaker6296 5 жыл бұрын
Hey this is great refresher. Not only is it well explained but you make it entertaining :) Keep it up!
@paragsomani5696
@paragsomani5696 4 жыл бұрын
You are doing a super work in a super excellent way.Best wishes.
@mufty9006
@mufty9006 2 жыл бұрын
The intro was extra fun😀 and educative I LOVE IT❤😂
@umaer2044
@umaer2044 5 жыл бұрын
@Gaurav_Sen bother hope you are doing well. I just saw you on KZbin.. I really appreciate for what you are doing... Sharing knowledge.. 🙏 🙏 🙏 🙏 🙏.
@gkcs
@gkcs 5 жыл бұрын
Thank you!
@denniszenanywhere
@denniszenanywhere 5 жыл бұрын
Best explanation of nosql and mysql
@saebalam2498
@saebalam2498 3 жыл бұрын
You seems so knowledgeable and professional ❤️
@TusharParekhtpar2014
@TusharParekhtpar2014 4 жыл бұрын
Very Good explanations and correlations . Thank you very much for the knowledge shared !
@saurabhsingh7020
@saurabhsingh7020 5 жыл бұрын
Hi Gaurav, Really nice video. It must have taken lot of effort. One point, Consider situation of altering a table and adding salary column. In SQL it will acquire lock and slow the process. In NoSql it will faster. But column won't be added in all pre existing documents. In will break backward compatibility if user tried to fetch salary from any pre existing document. Thanks
@gkcs
@gkcs 5 жыл бұрын
Thanks Saurabh! Yes it would, and that's one of the issues with constraint addition here. A check for null with a default value could be added in the application layer perhaps?
@saurabhsingh7020
@saurabhsingh7020 5 жыл бұрын
@@gkcs Hi Gaurav, In SQL queries present in our code will throw ColumnNotFound. Don't know how we fetch in NoSql. Maybe due to json structure, we get that flexibility.
@gkcs
@gkcs 5 жыл бұрын
@@saurabhsingh7020 Yup, we do. Hence the flexible schema.
@ravindracute
@ravindracute 4 жыл бұрын
I really like the way you explain Gaurav....
@ravindracute
@ravindracute 4 жыл бұрын
I have been extensively working on Cassandra and it is really a boon for NoSql DB
@shubhranshukumar1814
@shubhranshukumar1814 5 жыл бұрын
I am kind of confused that how No-SQL databases can have the read time as a disadvantage along with data aggregation as an advantage. Isn't a lot of read required for aggregating the data?
@amythpaddy8527
@amythpaddy8527 4 жыл бұрын
Same question. And from my experience I did not find data aggregation easy for nosql data. Am I doing something wrong?
@sigfrido86
@sigfrido86 4 жыл бұрын
I think that the key is database sharding and partitions. If you don't take this into account, read across partitions its a very expensive operation. If your database is well design, then you are ok.
@vitthalsarode5149
@vitthalsarode5149 4 жыл бұрын
@@amythpaddy8527 I think what Gaurav means is most of NoSQL databases give inbuilt support for aggregation like mongo. Please go through this link you might get your answer docs.mongodb.com/manual/core/aggregation-pipeline/
@obiwon84
@obiwon84 4 жыл бұрын
I think read performance can vary a lot for each NoSQL database. To further complicate the matter small reads vs large batch reads could have vastly different performances. Data aggregation tends to be large batch reads I would assume. Perhaps that is the reason for his statements?
@Manoj-tb1lv
@Manoj-tb1lv 4 жыл бұрын
if consistency is relaxed, then read is faster in Nosql, else consistency adds an overhead .
@ujjwal94roy
@ujjwal94roy 5 жыл бұрын
Amazing explaination for a noob. Nice job
@gkcs
@gkcs 5 жыл бұрын
Thanks!
@togadiadarshan4732
@togadiadarshan4732 2 жыл бұрын
Great video. It helps a lot to understand the system design concepts. Can you please make a video on how node and react use event-driven architecture?
@gkcs
@gkcs 2 жыл бұрын
Thank you! I have one on event-driven architecture here: kzbin.info/www/bejne/qHurhX5oicuNZ6s
@starkhunt2684
@starkhunt2684 2 жыл бұрын
Bro you should upload 1 min or 30 sec separate video of that intro clip which discusses Difference between NOSQL & SQL!! It is great🤣🤑
@myth00s
@myth00s 3 жыл бұрын
The term "relation" in RDBMSs does not refer to the referential integrity achieved with foreign keys, but to the structure we more commonly refer to as "table" - a set of rows / tuples.
@rajeshpothamsetty4830
@rajeshpothamsetty4830 5 жыл бұрын
Thanks for video @Gaurav. query: If read times are slower in NoSql, how is it that it is good for aggregations? If I want average age per city, I still have to go through all records and and entire blob for each record, this is expensive right? Can you elaborate more on this?
@vimleshkumarkanaujiya
@vimleshkumarkanaujiya 4 жыл бұрын
Bahut Sahi Kar raho Ho Sen Bro. People want videos from video. Expectations from you.
@Arneboy98
@Arneboy98 4 жыл бұрын
I wish my class was this interesting.
@sachin.tandon
@sachin.tandon 3 жыл бұрын
Thank you Gaurav. A very impressive educational video! Keep up the great work!
What is an API and how do you design it? 🗒️✅
15:26
Gaurav Sen
Рет қаралды 744 М.
System Design: TINDER as a microservice architecture
36:41
Gaurav Sen
Рет қаралды 1,2 МЛН
Noodles Eating Challenge, So Magical! So Much Fun#Funnyfamily #Partygames #Funny
00:33
Walking on LEGO Be Like... #shorts #mingweirocks
00:41
mingweirocks
Рет қаралды 8 МЛН
Hoodie gets wicked makeover! 😲
00:47
Justin Flom
Рет қаралды 132 МЛН
Microservices with Databases can be challenging...
20:52
Software Developer Diaries
Рет қаралды 93 М.
SQL vs NoSQL or MySQL vs MongoDB
21:30
Academind
Рет қаралды 1,8 МЛН
Facebook MEMCACHE: PETABYTES of key values
31:53
Gaurav Sen
Рет қаралды 10 М.
Database Sharding and Partitioning
23:53
Arpit Bhayani
Рет қаралды 97 М.
Databases In-Depth - Complete Course
3:41:20
freeCodeCamp.org
Рет қаралды 310 М.
Moving from MONOLITHS to MICROSERVICES 🎂 → 🍰🍰🍰
19:25
Noodles Eating Challenge, So Magical! So Much Fun#Funnyfamily #Partygames #Funny
00:33