|
|
|
|
|
by dvtkrlbs
1748 days ago
|
|
Not a database expert but here is my thoughts after using Cockroach DB for a mid sized:
- Single cluster mode is really nice for local deployment
- WebUI is a cool idea but I wish it had more info
- The biggest problem is Postgres compatibility there are some quirks that was annoying examples being. The default integer types having different sizes, cockroachdb having a really nice if not exists clause for create type but having no way to maintain a Postgres compatible way of doing it (i think this one is on postgres only being able to do it with plsql scripts is cumbersome)
- For me the neutral one. IT HAS ZERO DOWNTIME SCHEMA CHANGES. But if you are just coming from Postgres and just using a regular migration tool and transactions and schema changes having serious limitations and could end up your database in inconsistent state is scary. (Docs really document the behavior but still I would expect a runtime warning for it. |
|