Things to know about databases
architecturenotes.co
Things to know about databases
1–10 of 247 posts
Re: Things to know about databases
#2Re: Things to know about databases
#3Re: Things to know about databases
#4This is a quick rundown of database indexes and transactions. Excited to continue sharing these notes with community!
Re: Things to know about databases
#5Great post. Also highly recommend Designing Data-Intensive Applications by Martin Kleppmann ( https://www.amazon.com/Designing-Data-Intensive-Applications... ). The sections on "Storage and Retrieval", "Replication", "Partitioning" and "Transactions" really opened up my eyes!
I really like how he (Martin Kelppman) in the book starts with a primitive data structure for constructing a database design, and then evolves the system slowly and describes the various trade offs with building a database from the ground up.
Re: Things to know about databases
#6Re: Things to know about databases
#7Re: Things to know about databases
#8Re: Things to know about databases
#9Earlier quoted context omitted.
I have been really enjoying the content so far, any hits on whats coming up?
We have another couple of notes from a few companies like Temporal, Sentry, and Gadget.
If possible, would be great to get Mark Brooker (Principal at AWS) to provide some notes on bridging the gap between CAP theorem and how AWS relaxes constraints for building out Elastic Block Storage (EBS).
Re: Things to know about databases
#10I know they’re trying to simplify, but this is confusing. If the first part is true, the second part can’t be. In reality the database does execute the queries concurrently, but will try to make it seem like they were done one by one. If it can’t manage that, a query will fail and have to be retried by the application.