Superman
Superman

Reputation: 196

Does cockroachdb support extensions?

I am wondering whether cockroachdb supports extensions such as time-scale and others?, because I have a project which requires a third party postgres extension in conjunction with cockroachdb.

Upvotes: 0

Views: 993

Answers (2)

mikhail_b
mikhail_b

Reputation: 968

If you are looking for a scale-out SQL database that supports both PostgreSQL client API and its extensions, I would encourage you to take a look at YugaByte DB. We are reusing the PostgreSQL codebase on top of our sharded replicated transactional layer, rather than building a SQL engine from scratch, and that will allow us to stay compatible with new PostgreSQL features as well as extensions.

Upvotes: 1

Ben Darnell
Ben Darnell

Reputation: 22154

No, CockroachDB does not support any PostgreSQL extensions. It may one day support features from some of the most popular extensions, but it is very unlikely that it will ever be possible to use arbitrary PostgreSQL extensions directly.

Upvotes: 5

Related Questions