Today, I finished listening to the book: Principles: Life and Work.
Ray Dalio writes and talks in a familiar voice, but with the authority of a self-made billionaire who made also billions to others. You can see Ray's the genuine enthusiasm and interest to teach what he has learned -- mistakes, lessons, and principles.
Core ideas for managers (my summary):
1. Every manager is an organizational engineer. Understand, architect and debug the organization to engineer outcomes for the company & community.
2. Focus on getting to the true picture of reality and face it.
3. Own responsibility for the outcomes.
4. Idea meritocracy. Do everything possible to get and iterate over good ideas to understand reality and iterate.
He has tons of principles, suggestions for every aspect of management, decisions, etc.
This book almost acts like an execution guide to my favorite book on management: The Goal.
I recommend this. He has published summary audio/video as well. I haven't watched them yet.
management
MongoDB developers and DBAs work with physical clusters, machines, instances, storage systems, disks, etc. All MongoDB users, developers, and their applications work with logical entities: databases, collections, documents, fields, shards, users, data types. There are a lot of similarities with Couchbase since both are document (JSON) oriented databases. Let’s compare and contrast the two with respect to database objects. Here’s the first part of this series comparing the architecture. MongoDB Organization A full list of MongoDB schema objects is listed here and here . A database instance can have many databases; A database can have many collections; Each collection can have many indexes. Each collection can be sharded based into multiple chunks on multiple nodes of a cluster using hash-sharding strategy or index sharding strategy. The MongoDB indexes are local to their data. Therefore, the indexes use the same strategy as ...
Comments
Post a Comment