I wanted to create Cassandra as datasource on application server which will have connection pooling capacity similar to OracleDataSource. Is this feature supported on any of the application servers?
My application will be deployed on 2 nodes, as of now I am creating a static 1 cluster on each node and getting 1 session created per keyspace I want to add the connection pooling capacity to this setup. I got to know that there is an option to set he connection pooling using PoolingOptions.
cluster = Cluster
.builder()...
.withPoolingOptions(poolingOptions).build();
session = cluster.connect("keyspace");
Below are my doubts
- How to dynamically increase/decrease the number of connections.
- My requests are synchronous requests at max how many requests can be severed from each host simultaneously.
- Whether increasing the number of connections on 1 node will affect the connection on other nodes? as data center being used by both the nodes is same.
- What is the default pooling mechanism provided by cassandra