I have a problem with ThreadPoolExecutor. There is a list which contains many file name. I want to process these files with multithreading. I only want 2 or 4 threads (depends on the processor) in one time. Sometimes if the files are long I get out of memory exception. I investigated the problem with no result...
The code:
ThreadPoolExecutor executor = new ThreadPoolExecutor(2, 2,
0L, TimeUnit.MILLISECONDS,
new ArrayBlockingQueue<Runnable>(20));
I store the file names in a list then I iterate through the list one-by-one and call the execute() method.
for(String fileName : fileNames) {
executor.execute(new FileProcess(fileName));
}
Then shutdown() the poolThread and wait for every thread are finish.
if (ProjectsHandler.withThread){
executor.shutdown();
while(!executor.isTerminated()) {
// wait until all threads are finish
}
}
So I gave out of memory exception. The profiler said the cause is the ThreadPoolExecutor. If I run the program with 1 thread everything is ok, no exception.
What could be the problem? Thanks in advance
ThreadPoolExecutor executor + new ThreadPoolExecutor– mre Jun 15 '11 at 12:52