Partition
For very large datasets, we need to break the data into partitions. Different partitions can be placed on different nodes in a shared-nothing cluster.
For very large datasets, we need to break the data into partitions. Different partitions can be placed on different nodes in a shared-nothing cluster.
When we try to add new features into the application code and the data also need to be adapted, with both old and new data, as well as old and new code, we u...
Transaction Processing means allowing clients to make low-latency reads and writes, in contrast with batch processing that runs periodically. Usually a small...
Many databases internally use a log, which is an append-only data file. A record is written as one line in a file. When one record is updated, the old line i...
How we think about data models ?
There are three concerns in most software systems
Races: Two or more threads access the same address in memory and at least one of them writes to that address. Starvation: A processor needs a resource b...