Bigtable -Google's NoSQL database
Bigtable — Easy Notes 1. What is Bigtable? Bigtable is Google's NoSQL database designed for very large amounts of data. Think of it like: Bigtable = NoSQL database + huge data + very fast read/write It is built for high throughput and consistently low latency . 2. When should you choose Bigtable? Bigtable is a good choice when: Situation Example Very large data > 1 TB Billions of customer records Data changes very quickly Stock prices changing every second High read/write speed required Millions of requests per second NoSQL data Data that doesn't need complex table relationships Time-series data Sensor data over time Real-time processing Live analytics Big Data Large-scale data processing Machine Learning Training/processing large datasets Easy example Suppose you have 10 million IoT sensors . Every sensor sends: Sensor ID → Temperature → Time S001 → 28°C → 10:01 S002 → 31°C → 10:01 S003 → 27°C → 10:01 ... And this happens every second . T...