Designing Data-Intensive Applications – Chapter 2: Data Models and Query Languages

《Designing Data-Intensive Applications: The Big Ideas Behind Reliable, Scalable, and Maintainable Systems》https://amzn.to/2WYphy6  Relational DB:  MS SQL, MySQL, IBM DB2, PostgreSQL, SQLite etc.  Document DB:  Cassandra, HBase, Google Spanner, RethinkDB, MongoDB etc.  Graph DB: Neo4j,Titan,InfiniteGraph,AllegroGraph,Cypher,SPARQL,Gremlin,Pregel Data Models:  Not only on how the software is written, but also on how we think about the problem that we…

Designing Data-Intensive Applications – Chapter 1: Reliable, Scalable, and Maintainable Applications

《Designing Data-Intensive Applications: The Big Ideas Behind Reliable, Scalable, and Maintainable Systems》https://amzn.to/2WYphy6 Reliability Continuing to work correctly, even when things go wrong.  aka. fault-tolerant or resilient. Fault vs. Failure (fault means one component failed), design system that able tolerance the fault to prevent failure;  Hardware Faults: Redundancy is  the key;  Software Errors: could be more…

Designing Data Intensive Applications – Chapter 3: Storage and Retrieval

<Designing Data-Intensive Applications: The Big Ideas Behind Reliable, Scalable, and Maintainable Systems> (If you keep things tidily ordered, you’re just too lazy to go searching.) —German proverb DB needs to do two things:  when you give it some data, it should store the data; when you ask it again later, it should give the data…