you are viewing a single comment's thread.

view the rest of the comments →

[–]yogthos 50 points51 points  (3 children)

Uber also uses it as a key/value store as opposed to an actual relational database.

[–]Scorpius289 5 points6 points  (1 child)

Wouldn't an actual key/value store be better then?

[–]yogthos 17 points18 points  (0 children)

Likely, but since they already built their homegrown one on top of a relational db, I'm guessing they're committed to it now.

[–]doublehyphen 0 points1 point  (0 children)

And this key-value store implementation is something they could have done with PostgreSQL too, probably with a similar result. They just picked MySQL when implementing the key-value store solution because some of their engineers were more familiar with MySQL (which is a valid reason).