Hi, I am using prisma with cockroachdb. CRDB clusters have many nodes.
I am using prisma with cockroachdb. CRDB clusters have many nodes.
I would like the prisma connection pool to open connections to different servers, to support failover in event of a CRDB node failure, and to distribute queries. Is this possible?
Solution:Jump to solution
Hello! This is not natively supported by Prisma. To get this functionality you would most likely need to use a load balancer like HAProxy. I think this page in the CDB docs may help
CockroachDB Docs
cockroach gen
Use cockroach gen to generate command-line interface utilities, such as man pages, and example data.
2 Replies
Solution
Hello! This is not natively supported by Prisma. To get this functionality you would most likely need to use a load balancer like HAProxy. I think this page in the CDB docs may help
CockroachDB Docs
cockroach gen
Use cockroach gen to generate command-line interface utilities, such as man pages, and example data.
thanks! Appreciate the tip.