A pool describes a cache of resources that an application can draw from to save instantiation time.
4
votes
1answer
813 views
c# exception handling on background threads using Thread pool
The application I am working on uses thread pool. Here's the basic pseudo code.
On the main thread
foreach(Object obj in Component.GetObject())
{
//Invoke the thread pool providing the call back ...
2
votes
1answer
305 views
python 2.5.2 multiprocessing pool behavior
When attempting to divide a DB insertion up between cores using the python multiprocessing module on 2.5.2, CentOS 5.5, the entire pool of 16 processes aborts as soon as the first one finishes. I ...
2
votes
1answer
532 views
C3P0 Creating too many Threads and Timers
I have a Java webapp running on Tomcat, with Hibernate and C3P0. All entity classes and JPA Controllers were done with Netbeans wizzard. There is a servlet that when called inserts many objects in the ...
1
vote
1answer
53 views
MySQL Connection Pool for mysql client
Is there a way to have an established connection pool on the client side (running as daemon), so it can be used by the mysql client on linux?
mysql ==(named pipe/unix domain socket?)==> mysql ...
1
vote
1answer
258 views
JBoss AS7: How to read datasource pool statistics with JMX
In JBossAS4, the MBean jboss.jca.ManagedConnectionPool allows to access, e.g., the number of used and the number of available connections of a data source. This MBean is no longer available in ...
1
vote
1answer
87 views
Application hangs while getting a connection from a “stale connection pool”
I have written a java app which first creates a connection pool at startup and during each refresh, get a connection from the pool, use it, and then close it.The problem happens when I get ...
2
votes
0answers
213 views
Should I use tcmalloc/jemalloc replace memory pool?
In my project, I use memory pool (boost::pool), but it eat too much memory(measured 22G), so I want to use tcmalloc/jemalloc replace memory pool, I consider the sides below:
1.performance
2.memory ...
2
votes
0answers
201 views
Pass SIGINT/^C to children in a Pool?
I have the following code (just testing some assumptions about the Pool class):
#!/usr/bin/env python
from time import sleep
from multiprocessing import Pool
def run_process(args):
print ...
1
vote
0answers
75 views
WCF Service only works when Enable 32-bit applications is true in IIS 7.5 App Pool
When running the service, everything seems to be working when that option is enabled.
I've searched if there were any 32-bit assemblies running with the service with corflags and I didn't find any.
...
1
vote
0answers
163 views
MongoDB Pool timeout
I need some help analyzing a problem I am encountering during the last weeks.
Every here and then my application hangs. Basically it is based on postgres but for some very speedy interactions we ...
1
vote
0answers
106 views
Java based Database Connection Pool library for multiple database users
Our Java application (web application that runs on Jetty 7.5.4) uses an underlying database. There are multiple databases users and the Java part needs to access the DB using those database users. Am ...
1
vote
0answers
169 views
Trouble with python multiprocessing: Pool freezing
I run recently on quite some trouble with python multiprocessing Pool method.
As you suggested, I'll try hardcoring these functions but:
a) they use sqlite databases
b) they are cross-dependent
c) ...
1
vote
0answers
342 views
JMS Connection Pooling with Websphere MQ 7.0 in Java Standalone application
I'll be developing stand-alone Java application being JMS client. I want to make sure that every time I send a message to a queue, I do not have to create session, connection etc.
I was thinking of ...
1
vote
0answers
800 views
python pool.map vs map
I need to apply a complex function to a long series. Done sequentially this seems to be inefficient as I have access to a 12 core machine.
Before making significant investment in this, i wrote up ...
1
vote
0answers
139 views
Is there a way to create a pool of pools using the Python workerpool module?
I am using the workerpool module to create some threads to perform HTTP GETS to a server. I love the concept so far. I set up a download job for a list of urls and then assign the work to a pool of ...
1
vote
0answers
184 views
Python: multiprocessing Pool map with init(pass handler to mapped function), AND uninit
I want to do something like this using Pool:
For each process in the Pool, initialize a handler (database handler, http handler, whatever).
Call the mapped function with the handler initialized in ...
1
vote
0answers
348 views
NSFetchRequest autoreleased with no pool in place - just leaking
First off I have to say this website and its members are amazing in their responses. Most helpful. thank you.
Secondly, I am troubleshooting the following error while troubleshooting an iPhone/iPad ...
0
votes
0answers
14 views
How to pool custom objects at Websphere Application Server (WAS)?
I'm using WebSphere Application Server 7.0. I notice that there is an Object pool managers in WAS under Resources. How do I implement pooling in WAS for custom Java objects?
Below are the images for ...
0
votes
0answers
38 views
node-mysql pool vs single connection
I'm switching to the single connection of node-mysql to use a connection pool.
I have a couple of questions about some behaviours I had with the single connection and I'm not sure they are needed in ...
0
votes
0answers
39 views
Java Connection pool exhausted error
I know normally if the error happened, i mean org.apache.commons.dbcp.SQLNestedException: Cannot get a connection, pool exhausted, which means the conenction is overloaded. but in this case, I pretty ...
0
votes
0answers
21 views
Third party connection pool software?
I am totally familiar with connection pool libraries, like c3p0, etc... I'm cool with connection pools that are managed by a web container, like Tomcat and WebSphere.
But what about the scenario ...
0
votes
0answers
13 views
what's the difference between boost::pool<>::malloc and boost::pool<>::ordered_malloc, and when should I use boost::pool<>::ordered_malloc?
I'm using boost.pool, but I don't know when to use boost::pool<>::malloc and boost::pool<>::ordered_malloc?
so,
1.what's the difference of boost::pool<>::malloc and ...
0
votes
0answers
38 views
How to adjust innodb buffer pool hit ratio as 60%?
Could you tell me how to adjust innodb buffer pool hit ratio as 60%?
As i know,, there is a formula to get the ratio.
innodb buffer pool hit ratio =
1 - (innodb_buffer_pool_reads / ...
0
votes
0answers
20 views
Map of file streams with LRU functionality and file stream closing/reopening
I need to maintain some sort of "pool" of the opened files. I need to be able to
write to the end of file (append-only)
read entire content of the file
currently I'm keeping the content in memory, ...
0
votes
0answers
33 views
cxf ws “no proxy” client
I'm working with a third part's Web Service and under HTTPS communication seems that multiple requests are queued and return results at the same time. For test purposes I want to create a WS CXF ...
0
votes
0answers
38 views
Telnet connection pool
I have an application which connects to different machines via telnet to run some commands on every request.Currently in every request it is connecting to a server then executing the commands and ...
0
votes
0answers
41 views
ZMQ: Queue of tasks without strict round-robin
I'm trying to figure out how to do the following with ZMQ:
Multiple clients send a request to a server (PUSH)
The server has a queue (pool) of those jobs (PULL/I don't know)
Multiple workers get a ...
0
votes
0answers
38 views
How to guarantee hadoop FileSystem connections are managed when I use pool
Since FileSystem.get is not thread-safe, I use FileSystem.newInstance instead.
but calling newInstance method each time when I need connection to HDFS may not be a good idea.
so I made FileSystem ...
0
votes
0answers
82 views
IIS 7.5 Classic application mode dose not serve aspx files
I have a asp.net web site that just run on Classic application Pool mode. So I have set application mode to classic on IIS.
But, When I set Classic pool for web site, There are no *.aspx handler, in ...
0
votes
0answers
156 views
High CPU Usage with Waiting for Response for MVC in IIS all of a sudden
I have a Windows 2008 Server and it hosts a few applications of my company. I do have an MVC ASP.Net application being hosted on that server as well. It has been working fine for more than half a year ...
0
votes
0answers
101 views
CompletionService and ObjectPool
//Worker Thread
class MyRunnable implements Runnable {
private String status;
public void getStatus() {
return status;
}
public void run() {
try {
if(Thread.interrupted()) throw new ...
0
votes
0answers
27 views
Apache Commons Pool LIFO vs FIFO
I'm wondering which are the advantages of a LIFO stack vs a FIFO queue in the implementation of a pool with Apache Commons Pool. Wouldn't be more "secure" to default as FIFO to avoid getting timeout ...
0
votes
0answers
174 views
which is the correct configuration for context.xml and web.xml for a connection pool with JNDI?
I am using the tomcat pool connection with JNDI, and everything apears to be ok, but, after 2 days with my app on production, I look up at the open connections in my database, and there's a ...
0
votes
0answers
205 views
Caused by: javax.naming.NameNotFoundException: pools
I am fighting this error for a few days already.
I can't find reasonable explanation about it on the Internet:
I use Glassfish 3.1.2.2 (build 5)
2012-12-19T17:54:26.046+0200 ...
0
votes
0answers
178 views
Spring JdbcTemplate - Connections - Unable to Close it seems
I have a configured data source (mySQL) inside my Spring Application as below :
<bean id="dataSource"
class="org.apache.commons.dbcp.BasicDataSource">
<property ...
0
votes
0answers
152 views
IIS 7.5 Recycling App Pool at scheduled time
we are experiencing an issue with application pools not recycling at the time they have been designated (could be because they have been shutdown, this is part of the question). We have about 20 app ...
0
votes
0answers
164 views
How to create a GlassFish server connection pool to access database?
I'm trying to do a connection pool in glassFish to a access database (.mdb), But I don't know how to do this.
I do connection pool to MySql server, coping the MySQL connector jar file into /lib ...
0
votes
0answers
293 views
Python Multiprocessing IOError: [Errno 22] invalid mode ('w+') or filename:
I have a function that works fine when I set it up as:
result=map(myFunction,dataList)
myFunction writes and reads a file to HDD.
However when I rewrite it as result=pool.map(myFunction,dataList) ...
0
votes
0answers
127 views
Calling http_request from PHP very long the first time
I'm writing a web site in PHP which calls REST services via HTTP, using the standard "http_request" PHP function.
The first "http_request" call from my PHP scripts takes about 2 seconds to reply, ...
0
votes
0answers
35 views
Apache Pool + How to inject object into existing pool
The problem is the server provider has a login method and it is asynchronous.
It returns the session token as the post back response.
So, When ever the postback response received with token i want to ...
0
votes
0answers
157 views
IIS site not using identity specified in app pool IIS 7 +
I have a web app from visual studio that is using local IIS server to run. It is an MVC 3 application. I setup the application pool in my IIS (win 7 pro) to use a service account for the application ...
0
votes
0answers
263 views
What is relation between IIS application pool and Database(Ex: SQL Server)?
Hi,
What is the relation between IIS application pool and Database(Ex: SQL Server) for a ASP.NET application?
Does any changes in IIS application pool configuration effect database connections? or ...
0
votes
0answers
113 views
Implementation of Thread Pools
I was wondering if anyone knows some good resources for researching how Thread Pools have been implemented. I've been asked to define an algorithm that dynamically adjusts the max thread-pool size. ...
0
votes
0answers
519 views
Performance of Session.disconnect in Java Hibernate
We have seen connection droughts in our system every once in a while, and the problem seems to be that Sessions are not being returned to the connection pool quick enough. I wrote a test that seems to ...
0
votes
0answers
4k views
GlassFish not loading connector
I'm using GlassFish 3 and I can't seem to get it to recognize the MySql connector. The admin console always says:
Ping Connection Pool for --- is
Failed. Ping failed Exception - Class
name is ...
0
votes
0answers
205 views
Impact of excessive MySQL connection pool
I have a .Net website and a winforms application both connecting to the same MySQL database. Pages of the website which utilise the database are very slow to load, sometimes exceeding 20 seconds. The ...
0
votes
0answers
223 views
Thread performance in multi-domain application
Multi-domain application performance.
To be short, my problem is that a task executing in one domain of multi-domain application may be much much slower than the same task executing in other domain.
...
0
votes
0answers
133 views
Is there any ideas about create HTML DOM object pool?
In RIA, especially very complicate such as google WAVE. For browser's DOM object recycle system is not smart, I think put all DOM object into an object pool maybe a good idea to avoid create too much ...
-1
votes
0answers
14 views
Debug Diag report states that autoConfig is set to false but it is set to true
We have taken a snapshot memory dump (not a crash event) and used DebugDiag to assess the activity. DebugDiag consistently gives a warning that the "Threadpool autoConfig is set to false", while the ...
-2
votes
0answers
16 views
Hibernate custom connection pooling in Tomcat
I have to implement a customized hibernate connection pool inside the tomcat container.
can anybody suggest me any logic?
Thanks in advance.

