| ▲ | striking 2 hours ago | |||||||
> Maybe one day I’ll learn to read a query plan. With SQLite's `.expert` mode you can delay that day a little longer: https://www.sqlite.org/cli.html#index_recommendations_sqlite...
Also wrt> My approach so far has been to just do these cleanup operations in small batches so that I don’t need to do database queries that take more than 5 seconds to run. This whole experience has given me more of an appreciation for why someone might want to use a “real” database like Postgres which can have more than one writer at the same time though. The advice for those " “real” " databases is generally to also do cleanup operations in small batches, they just tend to make it less obvious you're doing something unperformant in the smaller case. You're more right than you thought! | ||||||||
| ▲ | simonw an hour ago | parent | next [-] | |||||||
I've worked with large MySQL databases that used row-based replication and things like an UPDATE or DELETE that affected millions of rows had to be applied in batches there, because otherwise one SQL query might result in a million updated rows needing to be sent to all of the replicas at once. | ||||||||
| ||||||||
| ▲ | DANmode an hour ago | parent | prev [-] | |||||||
> they just tend to make it less obvious you're doing something unperformant Is this being positioned as a strength, in your comment? | ||||||||
| ||||||||