A pool describes a cache of resources that an application can draw from to save instantiation time.
4
votes
0answers
40 views
Azure Continuous Integration
I have an MVC 4 application on .NET 4.5.I have my application deployed on Azure cloud.
Up until yesterday I would make changed to my application, then check in to TFS, then my application would ...
10
votes
9answers
178 views
behavior of String literals are confusing
This behavior of String literals are very confusing , in the code below
I can understand line 1, line 2 , line 3 are TRUE , but why the line 4 is false
but when i print the Hashcode of both it is ...
1
vote
1answer
24 views
CDI and pooling
Does CDI allows pooling in some way?Because I thought this is a feature of EJB beans but Adam Bien says in this screencast that container chooses whether to create new instance of class through ...
0
votes
0answers
6 views
GenericKeyedObjectPool's MaxActive limit was exceeded
I start a thread to monitor my GenericKeyedObjectPool, just like this:
new Thread(new Runnable() {
@Override
public void run() {
for(;;) {
...
0
votes
1answer
20 views
How to pool a Java object in WebSphere Application Server 7.0?
I have simple class object which I want to pool in WebSphere Application Server 7.0.
My Java class looks like this:
SimpleBean
{
String str1;
String str2;
SimpleBean()
{str1="This ...
0
votes
0answers
7 views
com.ibm.ws.objectpool.ObjectPoolImpl incompatible with com.ibm.security.krb5.wss.util.ObjectPool?
I'm following IBM WAS' tutorial on how to use object pools but when I run my web application at WebSphere, I receive an error:
com.ibm.ws.objectpool.ObjectPoolImpl incompatible with ...
0
votes
0answers
18 views
Pooling Powershell to call Exchange through ASP.NET
I have an ASP application that utilizes the Powershell for Exchange snappins to perform various functions, such as mailbox quota limit increases and submitting new mailbox export requests. The ...
0
votes
0answers
16 views
comp/env/pool not found in context “java:”?
I have a web application trying to access a JNDI declared in WebSphere Application Server.
The JNDI is declared under Object pool managers. However, I'm receiving an error when I access the pool. The ...
2
votes
2answers
63 views
python multiprocessing pool terminate
I'm working on a renderfarm, and I need my clients to be able to launch multiple instances of a renderer, without blocking so the client can receive new commands. I've got that working correctly, ...
0
votes
2answers
173 views
oracle.jdbc.pool.OracleDataSource run a command for every new connection
I would like to execute an ALTER SESSION command on every new connection coming from a particular oracle.jdbc.pool.OracleDataSource connection pool. Is there a way to do that?
-2
votes
0answers
17 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.
0
votes
2answers
35 views
String object life in StringPool
All we know that JVM stores String variables in a separate StringPool.
Every time when we create a String (eg. String s1 = "anystring") it stores as a constant & when we create new String variable ...
0
votes
2answers
173 views
Gevent pool with nested web requests
I try to organize pool with maximum 10 concurrent downloads. The function should download base url, then parser all urls on this page and download each of them, but OVERALL number of concurrent ...
0
votes
3answers
75 views
how to operate On List of IIS Application Pools On Remote Server Using Powershell?
I am trying to build powershell program which would:
connect to the remote server
Show number of active IIS app pools on the active server
based on the selection (1,2,3,4,....n etc) it would reset ...
0
votes
2answers
27 views
Advice on data structure for pooling objects
I'm implementing a simple pooling system in my box2d based game to spawn/despawn/pre-pool all objects. The objects in question are all circles that are created at a set radius. e.g. When I pre-pool I ...
0
votes
3answers
176 views
Is there a generic “Object Pool” implementation for Delphi?
I came across this while looking for a database connection pool implementation for Delphi.
An object pool needs two methods:
get - to acquire an object from the pool (this will create a new ...
0
votes
0answers
43 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 ...
-1
votes
0answers
17 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 ...
0
votes
1answer
199 views
ActiveMQ's Messages being redelivered (PooledConnectionFactory misconfig suspect)
I have an application which is using spring MessageListenerContainers along with ActiveMQ. I've configured it to use PooledConnectionFactory, following activemq's documentation.
My scenario is as ...
0
votes
1answer
54 views
JDBC connection pool to multiple MySQL databases on the same server (with the same user and password)
I have multiple websites (about 200) that are hosted by the same Java web app. Each site has its own MySQL database. The databases are all on the same MySQL server and are all accessed with the same ...
0
votes
1answer
67 views
How can I safely return an object to a pool after asynchronous usage?
Given I have a pool of objects, how can I safely return an an pooled object back to the pool after usage if the usage is asynchronous? (using Future and Promise in this case)
Here's an example:
...
0
votes
0answers
41 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
23 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 ...
1
vote
1answer
57 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 ...
0
votes
2answers
51 views
Must a call to malloc be matched by a call to free in a dynamic memory pool?
I have some code here that implements a dynamic memory pool. The pool starts off at size 0 and grows with each successive allocation. It is used to try and minimise the overhead of tons of allocations ...
7
votes
2answers
579 views
Python multiprocessing: how to limit the number of waiting processes?
When running a large number of tasks (with large parameters) using Pool.apply_async, the processes are allocated and go to a waiting state, and there is no limit for the number of waiting processes. ...
1
vote
2answers
108 views
How to get the amount of “work” left to be done by a Python multiprocessing Pool?
So far whenever I needed to use multiprocessing I have done so by manually creating a "process pool" and sharing a working Queue with all subprocesses.
For example:
from multiprocessing import ...
0
votes
0answers
14 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 ...
1
vote
1answer
41 views
What happens if I close a connection from connection pool of stardog
Take a look at the following code.
1. I am creating a connection pool to stardog
2. Obtaining a connection from the pool.
3. Returning the connection to pool after the use.
My question is what will ...
1
vote
1answer
58 views
Stateless EJB threading issue
Consider the following two EJBs:
@Stateless
public class MyBean1 {
pulic void method1() {
//method implementation comes here
}
pulic void method2() {
//method ...
1
vote
0answers
81 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.
...
52
votes
1answer
31k views
How is the java memory pool divided?
I’m currently monitoring a Java application with jconsole. The memory tab lets you choose between:
Heap Memory Usage
Non-Heap Memory Usage
Memory Pool “Eden Space”
Memory Pool “Survivor Space”
Memory ...
5
votes
6answers
447 views
Multiprocessing.Pool makes Numpy matrix multiplication slower
So, I am playing around with multiprocessing.Pool and Numpy, but it seems I missed some important point. Why is the pool version much slower? I looked at htop and I can see several processes be ...
10
votes
3answers
20k views
java.lang.IllegalMonitorStateException: (m=null) Failed to get monitor for
Why may this happen? The thing is that monitor object is not null for sure, but still we get this exception quite often:
java.lang.IllegalMonitorStateException: (m=null) Failed to get monitor for ...
1
vote
1answer
132 views
Postgres SQL Pool Connection without application server
This is me following up on a question I posted earlier, where I was advised to use a Connection Pool to connect to my Postgres database. According to Postgres' jdbc4 documentation, they mention that ...
0
votes
3answers
61 views
How to work with many connection in c# and ASP.NET?
This is how I do my connection
SqlConnection conn = new SqlConnection(connectionstring);
conn.open();
SqlCommand comando = new SqlCommand(/*my query update/delete/insert/select o execute sp*/,conn);
...
1
vote
2answers
108 views
Creating symbolic links in PHP/IIS 8 when using the new Application Pool Identity feature
I'm running IIS 8, Server 2012. I have a web application where the programmers want to create symbolic links. Here is some sample code:
$target = 'symlink.php';
$link = 'symlink-link.php';
...
3
votes
2answers
388 views
Gevent with Database connection pool for Stream Server
I am using Python Gevent's stream servers for communicating with another machine (remote) which sends concurrent TCP/IP requests (on an avg 60 req/sec). Nature of this communication is mostly IO bound ...
0
votes
0answers
40 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
22 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
35 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
2answers
159 views
Python 2.7: process pool not working (inifinite workers created)
My multiprocess pool is not working and is behaving strangely:
from multiprocessing import Pool
import multiprocessing, logging
logger = multiprocessing.log_to_stderr()
...
0
votes
0answers
39 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
1answer
67 views
How to let CommonsPoolTargetSource pool size grow as needed?
I noticed that when there are many requests and the max pool size is reached, other requests wait until a resource is free. How do I setCommonsPoolTargetSource such that when it reaches its max pool ...
0
votes
0answers
42 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
1answer
79 views
Random Sprite with Sprite Pool
I wanna know how Sprite Pool works, since I dont really understand them.
What I'm trying to do is show random sprites each time user touch the button (I already manage the control), but my code ...
3
votes
1answer
154 views
Jetty server hangs with large object pool without any requests being made
I am running a web application using jetty server with maven. The application contains a large pool of static objects in Lists and Maps contributing to the 2.8GB of physical memory usage. After ...
0
votes
0answers
40 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
1answer
122 views
In control4 how can I use of Pool Proxy
Could anyone please guide in regards with the pool proxy development process. As the provided documentation (Proxy and Protocol guide) explains only about proxy classes but needing few more help and ...
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 ...



