Why do databases store data in B+ trees?

  Рет қаралды 29,891

Arpit Bhayani

Arpit Bhayani

Жыл бұрын

System Design for SDE-2 and above: arpitbhayani.me/masterclass
System Design for Beginners: arpitbhayani.me/sys-design
Redis Internals: arpitbhayani.me/redis
Build Your Own Redis / DNS / BitTorrent / SQLite - with CodeCrafters.
Sign up and get 40% off - app.codecrafters.io/join?via=...
In the video, I discussed the evolution of storage from naive implementations to optimized B plus trees in databases. I explained the need for using B plus trees, how table data is stored in them, and how the tree is serialized and stored on disk. I also introduced a system design course I offer. I highlighted the limitations of naive data storage methods like linear scans and explained how B plus trees solve efficiency issues in insertions, updates, finds, deletes, and range queries by organizing data into nodes on disk.
Recommended videos and playlists
If you liked this video, you will find the following videos and playlists helpful
System Design: • PostgreSQL connection ...
Designing Microservices: • Advantages of adopting...
Database Engineering: • How nested loop, hash,...
Concurrency In-depth: • How to write efficient...
Research paper dissections: • The Google File System...
Outage Dissections: • Dissecting GitHub Outa...
Hash Table Internals: • Internal Structure of ...
Bittorrent Internals: • Introduction to BitTor...
Things you will find amusing
Knowledge Base: arpitbhayani.me/knowledge-base
Bookshelf: arpitbhayani.me/bookshelf
Papershelf: arpitbhayani.me/papershelf
Other socials
I keep writing and sharing my practical experience and learnings every day, so if you resonate then follow along. I keep it no fluff.
LinkedIn: / arpitbhayani
Twitter: / arpit_bhayani
Weekly Newsletter: arpit.substack.com
Thank you for watching and supporting! it means a ton.
I am on a mission to bring out the best engineering stories from around the world and make you all fall in
love with engineering. If you resonate with this then follow along, I always keep it no-fluff.

Пікірлер: 57
@jatinrawat1047
@jatinrawat1047 6 ай бұрын
was exploring mongodb internals and needed to understand why we use B+ trees. awesome explanation ,crisp and to the point !
@user-lg4tw8hu2x
@user-lg4tw8hu2x 8 ай бұрын
Absolutely clear your explanation. Very simple approach making all B-tree propose understandable. I was reading a advanced book where I was getting lack of information and motivation about how to range from a leaf like containing 101 to a leaf containing 601. Your example is very realistic providing easier understanding. Congrats, buddy!
@nishankgoyal8323
@nishankgoyal8323 Жыл бұрын
Nice video, reminds me of how documents are stored in shelfs at my home. Containers saying what those documents are for say ITR, followed by files mentioning year blocks say 2010-2020, individual files and then individual documents.
@arungowda
@arungowda Жыл бұрын
Now I am slightly confused with indexing and storing rows as B+ trees 😂
@RaghvendraKumar-rm7tv
@RaghvendraKumar-rm7tv 10 ай бұрын
B+ Tree data structure is used to store both the row & index. Since every table has only one clustered index which determines how data is stored physically on the disk, in clustered index B+ tree will store the row data also. But in a non-clustered index, B+ tree will not have the actual row data but a pointer connecting it to the clustered index which has the actual data.
@amitrastogi1405
@amitrastogi1405 5 ай бұрын
Beautifully explained...hats off to you!
@alejandrogarcia3004
@alejandrogarcia3004 6 ай бұрын
loved your easy to understand explanation, thanks a lot for the new perspective on this!
@manukolathur4029
@manukolathur4029 Жыл бұрын
Simple and clear !!!!. Looking for more of these kinds...
@namangarg3933
@namangarg3933 Жыл бұрын
Very well explained Arpit. Looking forward to more such videos. KZbin is full of content and newbie creators. But, knowing the amount of research you put in your content coupled with your rich hands on experience, adds a tremendous confidence in whatever we learn from your channel. Thanks
@AsliEngineering
@AsliEngineering Жыл бұрын
Thanks for resonating 🙌 I ensure the correctness and in-depth understanding before making the video on it. Happy that you saw the efforts I have put in. Thanks again 🙌 will continue putting out videos on things that matter.
@swati12091993
@swati12091993 4 күн бұрын
These videos are extremely helpful. Makes me curious to explore more on my own. Thanks!
@AsliEngineering
@AsliEngineering 4 күн бұрын
Amazing. Thats precisely the attitude I wanted to percolate. Thank you for resonating 👍
@AbhijeetBhattacharya-uh7dy
@AbhijeetBhattacharya-uh7dy 7 күн бұрын
Awesome explanation! Thank you
@sahazeerks2363
@sahazeerks2363 Жыл бұрын
Awesome explanation, loved it
@aneksingh4496
@aneksingh4496 10 ай бұрын
its very very deeply explained just like a good book author explains it .... highly Appreciate your efforts
@sachinjindal4921
@sachinjindal4921 Жыл бұрын
Great explanation Arpit👏
@cooldudecs
@cooldudecs 11 ай бұрын
beautiful! This is so cool
@chandrachurmukherjeejucse5816
@chandrachurmukherjeejucse5816 3 ай бұрын
Great content as always.
@pankajvermacr7
@pankajvermacr7 5 ай бұрын
Amazing, I really appreciate your effort, the way you teach us, is great Thanks man.
@vinitsunita
@vinitsunita 7 ай бұрын
Awesome explaination
@mohdhaseeb9818
@mohdhaseeb9818 Жыл бұрын
Thank you sir!!
@rahulsarkar4206
@rahulsarkar4206 Жыл бұрын
A video suggestion. Difference between MySQL and Postgres. How they index differently and how that affects read, insert, update and delete query.
@prashantshubham
@prashantshubham Жыл бұрын
Great detailed video, thanks Arpit. Had one doubt if you can explain: At one point we're saying when we're finding one by Id = 3 it does 3 disk reads from root of the tree to leaf node, but isn't there caching involved and indexes are cached in memory so that the disk reads are avoided also is the caching involved only after 1st call is done pertaining to a row/table or are the indexes cached as soon as DB is ready to take reads/writes?
@santoshbhatnagar2155
@santoshbhatnagar2155 Жыл бұрын
Hi @Arpit just asking out of curiosity can one see the internal implementation of storage of data in a database?
@itsthesecondchannel
@itsthesecondchannel Жыл бұрын
Thank you
@butterhalves4262
@butterhalves4262 Жыл бұрын
awesome.
@smritimittal4128
@smritimittal4128 Жыл бұрын
For the first approach (discussed before B+ tree) - - All rows stored in a file - Can we not have 4KB (=disk block) sections each in that file too - If there were 1000 rows, then, each block is 100 rows now - so, to go through all of 1000 rows, I do 10 disk reads - hence, findOne is not O(n) but, O(no. of total disk blocks) ? - Also, when inserting - - Again, can we not put these 10 disk reads in RAM - re-arrange and flush all back to the file, the disk (similar to what we did for B+ tree) ?
@AsliEngineering
@AsliEngineering Жыл бұрын
1. that is exactly how disk io happens but how will you do random reads 2. Today you are talking about 10, but you will not have just 40kb of data, it will go in GBs if not TBs. Then how will you do it?
@vishnuaggarwal1132
@vishnuaggarwal1132 Жыл бұрын
Can you share the Notes unable to download them from your website
@jagannathprasaddas1636
@jagannathprasaddas1636 Жыл бұрын
Does a DBMS behave more intelligent than an os by bypassing the filesystem I/O? If yes what is the system call for reading writing to disk block from user space?
@rahulyadav8159
@rahulyadav8159 11 ай бұрын
One question here Arpit Leaf nodes of the tree contains the actural rows of table. So leafs nodes are efficiently utilizing the disk block size. But the internal nodes of the tree contains the child and their node information. So it seems internal nodes of the tree is not fully uitlizing the disk block size. So overall if we have more interanl nodes then we are un nessessarly wasting the disk block. Please let me know if I am thinking in right direction.
@Goku-xm1gq
@Goku-xm1gq 9 ай бұрын
this is a trade off made in order to achieve better performance and efficient range searches
@siddhantchavan1370
@siddhantchavan1370 4 ай бұрын
I wanna learn more about this, any good references?
@samarth319
@samarth319 Жыл бұрын
Can Clustered and Non-clustered index be related to B+ tree store of the database? Like for instance if we create a primary key then a clustered index is created on that, and inside the index, pointers to the block stored. So is that pointer pointing to the leaf node of the B+ tree?
@AsliEngineering
@AsliEngineering Жыл бұрын
Indexes are implemented as B+ trees. Indexes are implicit tables with 2 columns (indexed value and row id). Storage is very similar to how a table is stored.
@arungowda
@arungowda Жыл бұрын
@@AsliEngineering so the numbers 100,200..500 you talked about in the video, are they row Ids? when we index on a column, does it store a mapping of that column to rowId in B+ trees? In which case it has to do the B+ tree search? Or is the index a mapping of column to physical address on the disk?
@learnwithme7750
@learnwithme7750 9 ай бұрын
Hey Arpit Really good content..but one doubt in findById when we reach the leaf node of B+ tree then to search a particular should we need to traverse one by one or we can use binary search as well to reach a particular node?
@DurgeshYadav-bc5nm
@DurgeshYadav-bc5nm 6 ай бұрын
It's not ordered, so the search has to be linear. As the nodes can be scattered anywhere.. like.. imagine linked lists
@darshanv1748
@darshanv1748 10 ай бұрын
I have a doubt , if i insert another row in row 195 then all the next rows should also move forward (you have to do the same in B Trees also right ?) , i don't get how btrees solve this problem
@snehagupta1044
@snehagupta1044 2 ай бұрын
exactly tree will store the pointer to the data not the entire data
@binitrajshah9354
@binitrajshah9354 6 ай бұрын
In case of update still we can face same issue of overflow which implies time complexity to O(n). How B+ trees handle this situation? I mean new update might have larger value and my leaf node is already fully occupied.
@gauravsharma3142
@gauravsharma3142 4 ай бұрын
If a table has too many columns such as the data in each row exceeds 4kb of block size Will that block size will be of bigger value Or the databse will partition the row on basis of columns
@sanketh768
@sanketh768 4 ай бұрын
Sir , I'm not able to imagine things when you say b tree is serialised and stored in the disk. Could someone please help me understand this better and visualize this?
@AsliEngineering
@AsliEngineering 4 ай бұрын
each node is B+ tree is stored in one disk block. naive way to image each node in b+ tree as one separate file on the disk.
@rahulmenon5149
@rahulmenon5149 3 ай бұрын
do the leaf nodes contain data or pointers to actual data ? I read in other places - its pointers
@AsliEngineering
@AsliEngineering 3 ай бұрын
No. It is data. Read about the clustered index and how tables store data in the clustered index.
@BugMug09
@BugMug09 Жыл бұрын
Kya quality he bhaiya videos ki
@aayush7099
@aayush7099 Жыл бұрын
Sir, What will happen we use B trees instead of B+ trees.
@AsliEngineering
@AsliEngineering Жыл бұрын
intermediate nodes bloat up (given data now resides there as well). This means it will take us to read more data from disk to reach rows present in the leaf. Performance will degrade.
@saifulhasan2532
@saifulhasan2532 9 ай бұрын
What if we want to search a name? How B+ tree will work?
@AsliEngineering
@AsliEngineering 9 ай бұрын
same way, strings are comparable.
@saifulhasan2532
@saifulhasan2532 9 ай бұрын
So tthey will have different indexing? And we would have another B+ tree@@AsliEngineering
@ankuragarwal9712
@ankuragarwal9712 Жыл бұрын
At kzbin.info/www/bejne/ZmqoXqeMdrqkh9k -> are we assuming always that all B+ tree nodes will be part of one file therefore concluding that B+ tree leaf nodes contain offset of the next leaf node?
@rjarora
@rjarora Жыл бұрын
with all due respect, you should choose better topics for the videos
@AsliEngineering
@AsliEngineering Жыл бұрын
Suggest a few then.
How Swiggy designed and scaled its chatbot
15:11
Arpit Bhayani
Рет қаралды 10 М.
ИРИНА КАЙРАТОВНА - АЙДАХАР (БЕКА) [MV]
02:51
ГОСТ ENTERTAINMENT
Рет қаралды 7 МЛН
Вечный ДВИГАТЕЛЬ!⚙️ #shorts
00:27
Гараж 54
Рет қаралды 12 МЛН
Khó thế mà cũng làm được || How did the police do that? #shorts
01:00
Understanding B-Trees: The Data Structure Behind Modern Databases
12:39
How do indexes make databases read faster?
23:25
Arpit Bhayani
Рет қаралды 52 М.
B-tree vs B+ tree in Database Systems
31:50
Hussein Nasser
Рет қаралды 49 М.
How FastAPI Handles Requests Behind the Scenes
5:09
Code Collider
Рет қаралды 14 М.
10.2  B Trees and B+ Trees. How they are useful in Databases
39:41
Abdul Bari
Рет қаралды 1,1 МЛН
How nested loop, hash, and merge joins work.
11:08
Arpit Bhayani
Рет қаралды 26 М.
How Instagram efficiently serves HashTags ordered by count
12:18
Arpit Bhayani
Рет қаралды 13 М.
How to learn better and faster as a software engineer?
14:57
Arpit Bhayani
Рет қаралды 34 М.
How Do Databases Store Tables on Disk? Explained both SSD & HDD
18:56
Hussein Nasser
Рет қаралды 26 М.
Best mobile of all time💥🗿 [Troll Face]
0:24
Special SHNTY 2.0
Рет қаралды 1,1 МЛН
cute mini iphone
0:34
승비니 Seungbini
Рет қаралды 5 МЛН
Low Price Best 👌 China Mobile 📱
0:42
Tech Official
Рет қаралды 717 М.
Урна с айфонами!
0:30
По ту сторону Гугла
Рет қаралды 7 МЛН