Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the maximum number of connections?

Tags:

rethinkdb

Since the native RethinkDB drivers do not support connection pooling yet, I was wondering, what is the maximum number of connections to the RethinkDB server?

like image 886
Amberlamps Avatar asked Jul 16 '15 13:07

Amberlamps


1 Answers

There are a couple answers to this question:

Connection Pooling

There are some third-party drivers that do have connection pooling. rethinkdbdash, for example, is a great Node.js driver that has connection pooling.

Maximum Number Of Connections

I'm not sure there's a hard limit on number of connections on the RethinkDB side, but users usually run into the connection limits of the OS before really running into the maximum number of connections on the RethinkDB side (I don't think there is one). Basically, RethinkDB can easily handle thousands of connections without a problem.

like image 196
Jorge Silva Avatar answered Oct 04 '22 18:10

Jorge Silva