←back to thread

Why AO3 Was Down

(www.reddit.com)
151 points danso | 3 comments | | HN request time: 0.714s | source
1. RainyDayTmrw ◴[] No.44470247[source]
It's kinda impressive that they got to 2 billion rows - with indexes, no less - without falling over.
replies(1): >>44471169 #
2. jiggawatts ◴[] No.44471169[source]
Point queries — typical of this kind of app - scales as log(n) in the number of rows. (Assuming a typical b-tree database index.)

This kind of workload cheerfully “scales” to your disk capacity.

replies(1): >>44477412 #
3. RainyDayTmrw ◴[] No.44477412[source]
Locking would make that more complex, I believe?