0
votes
1answer
193 views

How to increase Jetty threadpool size with jetty-runner on Heroku?

I have a Java (Spring MVC) webapp running on Heroku. It uses the setup described in this article: Getting Started with Spring MVC Hibernate on Heroku It looks like Jetty by default uses just one ...
1
vote
1answer
175 views

GenericObjectPool threshold

The GenericObjectPool is configured for 12 Threads. Once 12 threads are exhausted, I find the caller thread goes zombie. I think default behaviour is to enqueue extra requests and serve once available ...
0
votes
0answers
98 views

Need Methodology to Implement WatchDog Timer in spring application

I have a requirement in my project to have WatchDog Timer Implementation for every concurrent Task(each thread). It suppose to have below functionalities: For every thread(task) watchdog timer has ...
0
votes
1answer
90 views

How to pool statefull bean?

I am using Spring 3.1 on standalone env. I have scenario where I am creating programmatic prototype beans. each bean has it's own state.(they are statefull, having unique id and etc..) After a ...
0
votes
0answers
50 views

how to config thread count when use LocalTaskExecutorThreadPool?

Trying to use default LocalTaskExecutorThreadPool for my spring/quartz configruation since this is only one compatible with org.quartz.commonj.WorkManagerThreadExecutor which I need for websphere. ...
0
votes
0answers
30 views

cancel previous unwanted requests from UI @server

In our web application we have many options for the user to choose and based on which the result will be displayed. For each change in the selection by the user we are sending AJAX request to ...
2
votes
1answer
422 views

Smart way to ensure Spring context stays alive during ThreadPoolTaskExecutor testing

We're trying to implement a sort of ensurance between multi-threaded part of our application and the database access so that DB would not be hit with too many threads (customer requirement) and at the ...
3
votes
2answers
1k views

Spring ThreadPoolTaskExecutor in a Tomcat webapp - bad practice?

Recently in my project I had a need to perform some tasks asynchronously. Since we are running a webapp with Spring inside a Tomcat, the ThreadPoolTaskExecutor provided by Spring was a solution. ...
0
votes
0answers
259 views

too many threads BoneCP

I develop web service with jax-rs, jersey, spring and BoneCP. I'm using a Postgres database. Gradually, as the web services are called, the Java process (Jetty server) uses more RAM, then kills the ...
0
votes
1answer
436 views

Effects of uncaught exceptions on threads from Quartz's SimpleThreadPool

Using Spring's integration api with Quartz, what will the effects be on cron jobs that have uncaught exceptions? Since the cronbean/worker thread did not catch the exception, will that mean the thread ...
2
votes
2answers
1k views

How does pool size actually work with Spring's scheduled tasks?

I have a task scheduled as such: <task:scheduler id="notification.scheduler" pool-size="15" /> <task:scheduled-tasks scheduler="notification.scheduler"> <task:scheduled ...
1
vote
0answers
236 views

OSGi bundle with ThreadPoolTaskExecutor does not shut down gracefully

I am using Eclipse Virgo Server as my OSGi container and my bundle has a Spring provided ThreadPoolTaskExecutor. When I run the server shutDown.bat it will throw me an error and hangs up. I do use the ...
2
votes
2answers
224 views

How to gain a lost connection to server without restarting the Server, when a listener thread dies

I am trying to listen to RabbitMQ queue by polling it. But somehow due to network issues if once connection to queue is lost then thread silently dies off and connection and everything is closed. But ...
2
votes
1answer
670 views

Spring 3 setting ThreadFactory for ThreadPoolTaskExecutor

Is this possible or is it managed by the Application Server? Passing the ThreadPoolTaskExecutor ref to a bean is a no-brainer but trying to set the threadfactory on the aforementioned executor seems ...
4
votes
1answer
1k views

Thread keeps running even after application has been stopped in Websphere

I have a long running thread which is created using org.springframework.scheduling.commonj.WorkManagerTaskExecutor with Spring and is running in Websphere Application Server 8. The problem is that ...
0
votes
3answers
948 views

Spring Task Executor Scheduled too many instances of the task

I have a simple Spring Scheduled Taks defined by the following: <context:component-scan base-package="com/test"/> <task:scheduled-tasks> <task:scheduled ref="myScheduler" ...
1
vote
2answers
1k views

ThreadPoolExecutor's getActiveCount()

I have a ThreadPoolExecutor that seems to be lying to me when I call getActiveCount(). I haven't done a lot of multithreaded programming however, so perhaps I'm doing something incorrectly. Here's my ...
1
vote
5answers
3k views

Create a worker thread and run from a servlet or Spring controller

I would like to execute some task after a user request in background. My initial idea is to create a work thread and execute it from a servlet. However, I do not want too many threads to be running at ...
0
votes
2answers
447 views

JMS and ThreadPool problem?

I want that jms receives a message when one thread has handled a message (threadPool submits a callable). The messages are received by a master thread. Which way is better below: I use spring 3.0.5 ...
0
votes
1answer
522 views

How to stop a thread running through TaskExecutor from the main thread after it doesnt respond in few seconds?

I have used TaskExecutor from spring and futures to get the future from the task,but now when some task doesnt respond in some time I have to stop those tasks.I have tried using Future.cancel() method ...
8
votes
1answer
8k views

How can I shutdown Spring task executor/scheduler pools before all other beans in the web app are destroyed?

In a Spring web application I have several DAO and service layer beans. One service layer bean has annotated @Async / @Scheduled methods. These methods depend on other (autowired) beans. I have ...
0
votes
4answers
1k views

how to modify ThreadPoolTaskExecutor at runtime through jmx

I'm having trouble modifying my MBean properties through JConsole. I have a Threading bean which invoked with: public static void main(String[] args) throws Exception { // JMX new ...
1
vote
1answer
196 views

Organize threads in groups and set a different max threads to each group

I'm using Spring ThreadPoolTaskExecutor in order to execute my threads. I want to group my threads in several groups, and that every group will have different max allowed threads. For example, ...
1
vote
1answer
2k views

Only one thread is utilized in the ThreadPoolTaskExecutor and JMS

I have a JMS Message Listener under JBoss 5.1, configured by Spring. Although the ThreadPoolTaskExecutor is configured to have a core pool size of 15, I see that only one thread is serving requests, ...
2
votes
1answer
609 views

Don't understand some behaviour of @async

I'm having some difficulty understanding a certain aspect of the @async annotation, and possibly the workings of threads and threadpooling as a whole. When I set this in my spring configuration file: ...
0
votes
1answer
547 views

Spring - scheduling and pooling runnables of different state (each Runnable instance has different state)

I can't figure out what to use for scheduling and pooling runnables of different state (each Runnable instance has different state). I could use ScheduledExecutorFactoryBean together with ...
8
votes
5answers
2k views

Accessing scoped proxy beans within Threads of

I have a web application running in tomcat where I'm using a ThreadPool (Java 5 ExecutorService) to run IO intensive operations in parallel to improve performance. I would like to have some of the ...