|
|
|
|
|
by jbellis
6121 days ago
|
|
Because of how the storage engine works, mysql insert performance degrades significantly as table size grows into double digits of GB, and especially once the PK index no longer fits in RAM. Cassandra doesn't have to read indexes to figure out where to put the data so write performance stays constant as your data set grows. |
|