connection-pooling Questions

4

(edit: Perhaps I am wrong in what this error means. Is this indicating that the connection pool at my CLIENT is full? or a connection pool at the SERVER is full and this is the error my client is b...

3

Solved

For years, I've experienced very weird problems on all my web applications that connect to a SQL server. The problem is that if something happens to the database server (server restart or other pr...
Rebane asked 28/1, 2010 at 11:14

4

I'm trying to set up a MySQL connection pool and have my worker processes access the already established pool instead of setting up a new connection each time. I'm confused if I should pass the da...
Rhodia asked 23/6, 2014 at 19:43

3

I am using Apache Tomcat JDBC connection pool library in my project and configured the context.xml file accordingly. My application instance needs to run at multiple locations, but load on the appl...
Veroniqueverras asked 15/12, 2021 at 9:41

2

We are using Mongoose, Nodejs, Serverless, and AWS Lambda. For making use of the same connection instead of opening and closing the connection each time whenever required, I have created a connecti...

4

We are trying to convert our monolithic application to a micro services based architecture. We use Postgresql as one of our database in the monolithic application with BoneCP for connection pooling...

2

I'm using Celery with an AMQP broker to call tasks, but the response needs to be passed back with a different queue architecture than Celery uses, so I want to pass the messages back using Kombu on...
Kinky asked 14/11, 2013 at 19:52

2

For testing, I amend the MYSQL (RDS) parameters as follows; wait_timeout = 40 (default was 28800) max_allowed_packet = 1GB (max - just to be sure issue not caused by small packets) net_read_timeou...
Injustice asked 14/11, 2019 at 21:10

2

Solved

I am going through spring boot application and mongoDb connection POC. I have added following dependency: <dependency> <groupId>org.springframework.boot</groupId> <artifact...
Breton asked 5/6, 2018 at 10:48

3

Python's popular Requests library is said to be thread-safe on its home page, but no further details are given. If I call requests.session(), can I then safely pass this object to multiple threads ...

4

I have written following properties in my configuration files I am using Log4j in my application When I am running a project. I am getting following message.does that mean connection pooling is c...
Treacherous asked 2/7, 2018 at 12:52

14

Solved

Many database connection pooling libraries provide the ability to test their SQL connections for idleness. For example, the JDBC pooling library c3p0 has a property called preferredTestQuery, which...
Grip asked 8/9, 2010 at 14:4

2

Solved

I'm using SpringBoot (v2.3.0.RELEASE), JPA and Hibernate (with a MySQL database). I need to try to improve, in general, the performances. It's not completely clear for me if, into the default confi...
Mckibben asked 6/7, 2021 at 10:4

1

I'm trying to configure R2DBC connection to PostgreSQL database with connection pool. I have followed this documentation: https://github.com/r2dbc/r2dbc-pool/blob/main/README.md. ConnectionFactory ...
Unconventionality asked 27/3, 2021 at 9:0

4

Solved

I am trying to implement the concept of ConnectionPooling in Oracle using Jetty server. I have tried the following that I saw on a tutorial. It is working if I deploy using Tomcat server, but Jetty...
Substratum asked 30/10, 2015 at 7:22

2

We have a [Hibernate + c3p0 + MySQL] config for our project. We are hitting the following exception: com.mchange.v2.resourcepool.CannotAcquireResourceException: A ResourcePool could not acquire a r...
Hexa asked 20/11, 2012 at 21:49

1

Solved

I want some clarification on how the pre ping feature exactly works with SqlAlchemy db pools. Let's say I try to make a SQL query to my database with the db pool. If the db pool sends a pre ping to...
Zecchino asked 18/3, 2021 at 13:37

4

Solved

I use DBCP pool and I want use testOnBorrow and testOnReturn to test if connection is still valid. Unfortunately I have to set property validationQuery to make it work. Question: What value should...
Retinol asked 21/5, 2012 at 11:20

1

I have a Saas application on AWS ECS and databases on AWS RDS. We are planning to implement AWS RDS Proxy for pooling implementation. From the RDS proxy documentation, I saw that we don't need to m...
Encircle asked 6/8, 2020 at 10:56

2

Solved

My Spring Boot works fine when I generate report using Japser report. The problem I face is that the application throws a hibernate exception : Unable to acquire JDBC Connection I get this e...
Collective asked 20/9, 2018 at 13:41

6

Solved

I have heard the term connection pooling and looked for some references by googling it... But can't get the idea when to use it.... When should i consider using connection pooling? What are the a...
Idiophone asked 2/3, 2010 at 4:48

1

Solved

I've been learning about connection pools, and I have gotten one working by using Tomcat's PoolProperties. Now I would like to set one up using a context.xml file with Tomcat and IntelliJ, but I ca...

2

Solved

Can anyone please tell me if the Spring Cloud Feign Client provides or supports Http Connection Pooling, and if so how to configure settings like pool size? I can't seem to find this in the officia...
Viviennevivify asked 22/3, 2016 at 11:25

3

Solved

We are running an AWS RDS Aurora/MySQL database in a cluster with a writer and a reader instance where the writer is replicated to the reader. The application accessing the database is a standard...

5

We have ASP.NET app that connects to oracle database with odp.net. Lately we started to experienced some performance issues. It seems that Oracle connections do not close and eventually pile up un...
Warton asked 20/1, 2012 at 6:51

© 2022 - 2024 — McMap. All rights reserved.