In software engineering, a connection pool is a cache of database connections maintained so that the connections can be reused when future requests to the database are required.
0
votes
0answers
12 views
httpcomponents asyncclient 4.0-beta4
Can someone point me to a good example using the PoolingNHttpClientConnectionManager for async connection pooling with httpcomponents?
Maybe I'm missing it but there seems to be very little real ...
0
votes
4answers
53 views
Error while using connection pooling
I am new to java. i have a java class which accesses the database through jdbc. In each method of this class, i am opening and closing the connection, which seems to be causing the performance hit. I ...
0
votes
0answers
24 views
Connection pool between gearman/php and mysql
I have a few Gearman workers that are implemented on php. Each task for these workers should be executed in the own transaction. In order to have access from these workers to my MySQL db I need ...
0
votes
1answer
10 views
Connection Pooling using Apache common DBCP And DBUtils and concurrency
I'm investigating concurrency when doing multiple queries in different threads.
I am using Apache DBCP and DBUtils not because I want to complicate my life but because they should guarantee that the ...
1
vote
1answer
41 views
JDBC Transactions behaviour while tomcat redeploying
What happens when I have a number of active JDBC transactions and a redeploy hits the web application?, I searched the Tomcat docs but didn't find anything related.
For example: 30 customers have a ...
-1
votes
1answer
46 views
Configure Hibernate C3P0 Connection Pooling
I'm stumbled upon a problem while developing a Web Application based on Struts2 with Spring and Hibernate.
When I refresh the site a few times, for example 2-4 times, Hibernate is showing up an ...
0
votes
0answers
25 views
JSF dataTable opening multiple database connections
Project Specifications:
JSF 2.1
H2 Database Embedded
Jetty Web Server Embedded
Problem :
I have a backing bean "AverageBPSCalc" which has a list of managed beans "Frames". The getter method of ...
0
votes
1answer
10 views
Connection max pool size in SQL Server 2008
We are using SQL Server 2008 express. At the moment in the connection string we have the default pool size of 100. At peak times we are receiving time-out error when processing transactions into the ...
1
vote
1answer
67 views
Connection pool issue
If I launch my application after it was idle for some time, I used to get below error. ( I am using Spring+Hibernate+MySQL as DB )
ERROR [org.hibernate.util.JDBCExceptionReporter]The last packet ...
0
votes
1answer
22 views
Using JNDI on an extended BasicDataSource object
I want to implement connection pooling on my jdbc connection using jndi but i also want to use an extended BasicDataSource object. I have restriction on using tomcat 5.5. The requirement is to ...
0
votes
1answer
22 views
Preventing queries caching in MySQL
I'm using the tomcat connection pool via JNDI resources.
In the context.xml:
<Resource name="jdbc/mydb" auth="Container" type="javax.sql.DataSource"
username="myusr" password="mypwd" ...
0
votes
0answers
14 views
Weblogic database connectionpool
How to close all the active connections between web logic (12c) and the database without restart the server.
I tried to reset using the reset option under the servers - > Monitoring - > JDBC - > ...
-2
votes
2answers
61 views
Is this network design a candidate for improved preformance from non-blocking NIO? [closed]
I have a generic turn-based game I'm working on and currently here is how it operates:
Using boneCP (connection pool), MySQL database, java server, android client, and soon a thread-pool.
Client ...
0
votes
1answer
19 views
Factory class supporting JSF ManagedBean class
I have a a JSF web application and an example Managed Bean called User:
@ManagedBean
@SessionScoped
public class User {
private String name, surname;
public String getName() {
return ...
2
votes
1answer
27 views
create a jboss datasource connection pool dynamically
I've been asked to write some code which can create multiple jboss datasource connection pools programatically upon startup.
I've done this using a shell script which generates -ds.xml files at ...
0
votes
1answer
25 views
Data is not properly stored to hsqldb when using pooled data source by dbcp
I'm using hsqldb to create cached tables and indexed tables.
The data being stored has pretty high frequency so I need to use a connection pool.
Also because there is a lot of data I do not call ...
0
votes
3answers
37 views
JDBC Connection Pooling vs Dependency Injection
I'm quite new to Java EE and Connection Pooling. I've already tried few pools and every single one of them had the following issue:
ConnectionPoolDataSource source = new ConnectionPoolDataSource(); ...
0
votes
1answer
54 views
Which is a better way to handle connection pooling?
I'm trying to implement connection pooling for a JSF 2.1 application which has a H2 database and Jetty 9 Web server embedded in it. I have two options to implement connection pooling for the h2 ...
0
votes
1answer
38 views
Does c3p0 connection pooling ensures max pool size?
I've gone through several question, this is somewhat related but doesn't answer my question.
Does the c3p0 connection pooling maxPoolSize ensures that the number of connections at a certain time ...
1
vote
1answer
41 views
Hibernate - C3P0 - connectionPool - Transactions
I'm creating a web application with Netbeans 7.3, JSF 2.1 with Primefaces 3.5 and Hibernate 3.2.5. I'm running it on a glassfish server 3.1.2
My project has some upkeeps ( I'm not sure about how to ...
0
votes
1answer
164 views
Connection Pool Issue with MySQL using Hibernate and Apache DBCP
Seems to be an issue with my application. When ever the application is idle for a very long time ( am not sure the exact timing ) upon launching I get following error message in my logs. I am using ...
0
votes
1answer
34 views
How to tune MySQL connection pool params in context.xml
In Tomcat, your META-INF/context.xml file can contain a JNDI datasource object like so:
<Resource
name="jdbc/dbLogging"
auth="Container"
type="javax.sql.DataSource"
...
0
votes
1answer
22 views
what is the ideal way to use connection pooling in my scenario
I am new to connection pooling i need suggestions in below scenario :
I have two projects which have hibernate connection pooling with spring.
Now i have a scenario where i have to create a new ...
0
votes
0answers
18 views
Best practice for using the MySQL Connector/Net with Connection Pooling in a multithreaded .NET application
One multi-threaded .NET application that interacts with a MySQL cloud DB.
What is a better practice:
Have the MySqlConnection in a static wrapper and for each query, instantiate a new ...
0
votes
2answers
36 views
Connection Pooling Scanario in Tomcat
I am trying to understand a specific scenario in database connection pooling. Any pointers on this will be very helpful.
Setup :
Tomcat webserver
MySQL Server (max connections = 18)
...
0
votes
1answer
41 views
Connection not returned to tomcat pool
I have a jdbc pool in tomcat which is used to establish database connections.I am not explicitly closing the connection object after use.My 'maxActive' parameter is set to 100.The application runs ...
2
votes
2answers
52 views
Multithreaded mysql Connection Pooling for Java Application
.I have developed a java Application that downloads html from specified urls.I am able to download in multithreads .But now i want to use connection Pooling as well.I searched for various ways we can ...
0
votes
1answer
21 views
Connection pool works when running on eclipse, not working outside of eclipse
I created a connection pool.
when starting the server on Eclipse everything works fine
But when I deploy to the webapps folder and then try to run outside of eclipse i can't get a connection from ...
1
vote
0answers
48 views
Database connection pooling for c++ recommendation engine
I am considering to implement a recommendation engine for a small size website.
The website will employ LAMP stack, and for some reasons the recommendation engine must be written in C++. It consists ...
0
votes
0answers
31 views
using LDAP url in JBOSS oracle-ds.xml
Our oracle servers are migrating to LDAP. I use JBOSS connection pooling in my application which looks like
<local-tx-datasource>
<jndi-name>OracleDB</jndi-name>
...
0
votes
0answers
41 views
jdbcdslog to log SQL parameters in Jboss, Oracle: Unexpected error in pingDatabase
I use jdbcdslog to get my Hibernate Query along with parameters logged in to a file. I am using Jboss 5.0 as the app server and Oracle as the Database. I get below error when the server is started ...
0
votes
0answers
12 views
How to load tomcat connection pooling datasource configuration from outside war file
I am using tomcat connection pooling and
Currently, we store datasource definitions in the Tomcat container inside server.xml and expose environment variables through context.xml.
For every ...
0
votes
1answer
64 views
Database Connection does not release after idle time out in glassfish
i am using Glassfish 3 & mysql5.6.11.
i have created JDBC connection pool in glassfish.
Initial and Minimum Pool Size: - 8
Maximum Pool Size: -30
Pool Resize Quantity:- 10
Idle Timeout: - 60 ...
2
votes
2answers
154 views
ZeroMQ multithreading: create sockets on-demand or use sockets object pool?
I'm building a POC leveraging ZeroMQ N-to-N pub/sub model. From our app server, when a http request is serviced, if the thread pulls data from the database, it updates a local memcache instance with ...
3
votes
1answer
75 views
how to detect connection leak in jdbc using weblogic?
Is there any way to detect connection leaks in my project without going for load testing. I am using weblogic server , is there any way to detect using weblogic?
7
votes
1answer
104 views
SqlConnection vs Sql Session. Do their lifetimes coincide?
I want to apply some sql-session level settings for certain processes in my c# app.
For instance, I want to set DEADLOCK_PRIORITY for some background processes to LOW.
The questions are:
If I open ...
1
vote
2answers
64 views
JDBC Connection Pool - Simple Setup and Library
This question has formed following a previous question (Implement Iterator design pattern using JDBC).
I understand the basic concepts of connection pooling but no further than that. My application ...
1
vote
0answers
20 views
OracleTypes Compilation is forcing the application server restart
Using the Struct object to send the data from java to Data base Stored Procedure.
For this Need StructDescriptor class, Creating using below code.
StructDescriptor.createDescriptor(sqlTypeName, ...
1
vote
1answer
63 views
Do I need to manage DB connection pools in Play Framework, or does Play do it for me?
Do I need to obtain a context and DataSource in every method that reads/writes to the DB? (Sample below) Or does Play.db.DB's getConnection() method handle the pool transparently?
public void ...
1
vote
0answers
31 views
How to modify Aged Timeout Property of ConnectionFactory using JMSAdmin of MQ Websphere in Unix
I have a MQXAQueueConnectionFactory created using JMSAdmin of MQ Websphere in Unix. How do I set the Aged Timout properties of the corresponding Connection Pool from commands in Unix?
Appreciate your ...
0
votes
3answers
48 views
What will be the best way to reuse a CouchBase conneciton
I am using the following code for connecting the CouchBase
couchbase.connect(config.CouchBaseConnector, function (err, CouchBaseDB) {
if (err) {
throw (err)
}
...
0
votes
3answers
76 views
JSP/ DAO error : The method getInstance() is undefined for the type ConnectionPool
As you can see, this code is part of my Data Access Object Layer.
I've never used the ConnectionPool Object before because i'm still studying Java.
Anyway, i'm getting an error message stating :
...
0
votes
0answers
25 views
How to properly handle when Tomcat DB connection pool is empty
I am wondering what is the proper way to react to the situation when Tomcat DB connection pool is empty.
I am working on a RESTful web service running on Tomcat. The application is backed by ...
2
votes
0answers
92 views
Warning for Connection Abandoned - With tomcat 7 throwing PooledConnection Exception
I'm using tomcat 7 in my application. When I start the server, it shows me following warning message while startup:-
May 15, 2013 11:45:10 AM org.apache.tomcat.jdbc.pool.ConnectionPool abandon
...
0
votes
0answers
36 views
Pool of custom objects - best way to keep connections active
I need to redo a custom connection pool of objects. The connection pool essentially is a ConcurrentLinkedQueue of objects, each of which performs actions against a third-party server (Cognos). Each ...
0
votes
3answers
77 views
Tomcat conection pooling for oracle DB using Jndi
For my project i want to use tomcat connection pooling for oracle DB using jndi and getting exception while executing the below code:
This is the exception which i am getting:
...
0
votes
0answers
21 views
<no-tx-separate-pools> in Glassfish?
Is there a configuration equivalent to JBoss' <no-tx-separate-pools> for Glassfish?
We are in the process of migrating our application from JBoss to Glassfish, and just noticed that the old ...
0
votes
1answer
32 views
moving from single webapp to multiple webapps connecting to same database
I have a JAVA webapp which is using DB connection pooling for Tomcat+MySQL config.
I have another JAVA webapp which i want to deploy in the same Tomcat and connect to same MySQL database (even access ...
-2
votes
2answers
40 views
Some questions about using design patterns in my project [closed]
I want to write a database application for users to interact with databases like MySQL, Oracle and IBM DB2 in java. And I want to use some design patterns in it. Could everyone give me some ...
0
votes
1answer
38 views
Connection within GlassFish, weird behavior?
I had this general question : can a connection pool keep in cache some "ancient" connection and serve it while an other one is called ? I know it somehow does, but does it use connection objects ...






