|
|
|
|
|
by jiggawatts
1015 days ago
|
|
I've scaled 300M rows in just one of many similarly sized tables to 1M users... in 2007... on a single box with spinning rust in it. Heck, my laptop could handle 100x the production load. It amazes me that my comment (while admittedly flippant) got voted down. It really is true that your phone can update a 50M row table about 10K times per second! That people are incredulous of this is in itself a stunning admission that developers these days don't have the faintest idea what computers can or cannot actually do. Just run the numbers: 50M rows with a generous 1 KB per row is 50 GB. My iPhone has 1TB of flash storage that has a random access latency of something like 50 microseconds, which equates to 200K IOPS. An ordinary NVMe laptop SSD can now do 2M. Writing even 10K random locations every second is well within mobile device capability, with 50% headroom to "scale". At 1 KB per row, this is just 10 MB/s, which is hilariously low compared to the device peak throughput of easily a few GB/s. |
|