←back to thread

234 points benocodes | 3 comments | | HN request time: 0.202s | source
1. vivzkestrel ◴[] No.41839908[source]
Anyone has any ideas why Uber doesn't use PostgreSQL?
replies(2): >>41839944 #>>41839967 #
2. hu3 ◴[] No.41839944[source]
https://eng.uber.com/postgres-to-mysql-migration/
3. cyberax ◴[] No.41839967[source]
They switched from PG to MySQL because they need to update highly concurrent tables, and PG created tons of bloat as a result. MySQL uses locking instead of optimistic concurrency.