- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在使用 ConcurrentLinkedQueue
来存储计算步骤,并使用 Executors.newFixedThreadPool
创建的 ExecutorService
来执行它们。我的问题是应用程序永远不会终止。这是一些代码:
public class Run {
public static void main (String[] args) throws Exception {
ParallelExecutor executor = new ParallelExecutor();
executor.execute();
// manual shutdown
Thread.sleep(30 * 1000);
executor.stop();
// the main thread dies, the application keeps running
}
public class ParallelExecutor implements Runnable {
// stores executions steps to
private ConcurrentLinkedQueue<ExecutionStep> queue = new ConcurrentLinkedQueue<ExecutionStep>();
private ExecutorService threadPoolExecutor = Executors.newFixedThreadPool(10);
private Thread feedingThread = new Thread(this);
public void execute() {
ExecutionStep step = new ConcreteExecutionStep();
this.queue.add(step);
this.feedingThread.start();
}
public void stop() {
if (log.isInfoEnabled()) {
log.info("Shutting down");
}
this.queue = new ConcurrentLinkedQueue<ExecutionStep>();
try {
this.feedingThread.join(0);
this.threadPoolExecutor.shutdownNow();
} catch (InterruptedException e) {
log.warn("Something happened!", e);
}
}
public void run() {
while (true) {
if (this.threadPoolExecutor.isShutdown()) {
return;
}
try {
Thread.sleep(this.waitMillis);
} catch (InterruptedException e) {
// NOP
}
if (!this.queue.isEmpty()) {
this.threadPoolExecutor.execute(new Runnable() {
@Override
public void run() {
ExecutionStep step = this.queue.poll();
List<ExecutionStep> nextSteps = Collections.emptyList();
try {
nextSteps = step.execute();
} catch (Exception e) {
// NOP
}
// here we feed the queue
this.queue.addAll(nextSteps);
}
});
}
}
}
编辑:这是主线程死后的线程转储:
2011-09-06 17:20:56
Full thread dump Java HotSpot(TM) 64-Bit Server VM (20.1-b02-384 mixed mode):
"DestroyJavaVM" prio=5 tid=10f874800 nid=0x100501000 waiting on condition [00000000]
java.lang.Thread.State: RUNNABLE
"Poller SunPKCS11-Darwin" daemon prio=1 tid=101a4d800 nid=0x11362e000 waiting on condition [11362d000]
java.lang.Thread.State: TIMED_WAITING (sleeping)
at java.lang.Thread.sleep(Native Method)
at sun.security.pkcs11.SunPKCS11$TokenPoller.run(SunPKCS11.java:692)
at java.lang.Thread.run(Thread.java:680)
"pool-2-thread-1" prio=5 tid=103db3000 nid=0x11341a000 waiting on condition [113419000]
java.lang.Thread.State: WAITING (parking)
at sun.misc.Unsafe.park(Native Method)
- parking to wait for <7f42e8f38> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
at java.lang.Thread.run(Thread.java:680)
"Timer-0" daemon prio=5 tid=101a63000 nid=0x113317000 in Object.wait() [113316000]
java.lang.Thread.State: TIMED_WAITING (on object monitor)
at java.lang.Object.wait(Native Method)
- waiting on <7f49cc200> (a java.util.TaskQueue)
at java.util.TimerThread.mainLoop(Timer.java:509)
- locked <7f49cc200> (a java.util.TaskQueue)
at java.util.TimerThread.run(Timer.java:462)
"Low Memory Detector" daemon prio=5 tid=10180a000 nid=0x10f607000 runnable [00000000]
java.lang.Thread.State: RUNNABLE
"C2 CompilerThread1" daemon prio=9 tid=101809800 nid=0x10f504000 waiting on condition [00000000]
java.lang.Thread.State: RUNNABLE
"C2 CompilerThread0" daemon prio=9 tid=103951000 nid=0x10f401000 waiting on condition [00000000]
java.lang.Thread.State: RUNNABLE
"JDWP Command Reader" daemon prio=5 tid=103950000 nid=0x10df01000 runnable [00000000]
java.lang.Thread.State: RUNNABLE
"JDWP Event Helper Thread" daemon prio=5 tid=10394f800 nid=0x10dc0a000 runnable [00000000]
java.lang.Thread.State: RUNNABLE
"JDWP Transport Listener: dt_socket" daemon prio=5 tid=10394e800 nid=0x10db07000 runnable [00000000]
java.lang.Thread.State: RUNNABLE
"Signal Dispatcher" daemon prio=9 tid=10e000000 nid=0x10da04000 waiting on condition [00000000]
java.lang.Thread.State: RUNNABLE
"Surrogate Locker Thread (Concurrent GC)" daemon prio=5 tid=101808800 nid=0x10d901000 waiting on condition [00000000]
java.lang.Thread.State: RUNNABLE
"Finalizer" daemon prio=8 tid=10393f000 nid=0x10c204000 in Object.wait() [10c203000]
java.lang.Thread.State: WAITING (on object monitor)
at java.lang.Object.wait(Native Method)
- waiting on <7f44e3d70> (a java.lang.ref.ReferenceQueue$Lock)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:118)
- locked <7f44e3d70> (a java.lang.ref.ReferenceQueue$Lock)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:134)
at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
"Reference Handler" daemon prio=10 tid=10393e000 nid=0x10c101000 in Object.wait() [10c100000]
java.lang.Thread.State: WAITING (on object monitor)
at java.lang.Object.wait(Native Method)
- waiting on <7f44e5220> (a java.lang.ref.Reference$Lock)
at java.lang.Object.wait(Object.java:485)
at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
- locked <7f44e5220> (a java.lang.ref.Reference$Lock)
"VM Thread" prio=9 tid=103939800 nid=0x10b6fc000 runnable
"Gang worker#0 (Parallel GC Threads)" prio=9 tid=103801800 nid=0x102601000 runnable
"Gang worker#1 (Parallel GC Threads)" prio=9 tid=103802000 nid=0x102704000 runnable
"Gang worker#2 (Parallel GC Threads)" prio=9 tid=103803000 nid=0x107102000 runnable
"Gang worker#3 (Parallel GC Threads)" prio=9 tid=103803800 nid=0x107205000 runnable
"Gang worker#4 (Parallel GC Threads)" prio=9 tid=103804000 nid=0x107308000 runnable
"Gang worker#5 (Parallel GC Threads)" prio=9 tid=103804800 nid=0x10740b000 runnable
"Gang worker#6 (Parallel GC Threads)" prio=9 tid=103805800 nid=0x10750e000 runnable
"Gang worker#7 (Parallel GC Threads)" prio=9 tid=103806000 nid=0x107611000 runnable
"Concurrent Mark-Sweep GC Thread" prio=9 tid=1038e3800 nid=0x10b408000 runnable
"Gang worker#0 (Parallel CMS Threads)" prio=9 tid=1038e2000 nid=0x10aa02000 runnable
"Gang worker#1 (Parallel CMS Threads)" prio=9 tid=1038e2800 nid=0x10ab05000 runnable
"VM Periodic Task Thread" prio=10 tid=10181c000 nid=0x10f70a000 waiting on condition
"Exception Catcher Thread" prio=10 tid=103801000 nid=0x1017f9000 runnable
JNI global references: 13614
Heap
par new generation total 19136K, used 16017K [7f3000000, 7f44c0000, 7f44c0000)
eden space 17024K, 81% used [7f3000000, 7f3d944a8, 7f40a0000)
from space 2112K, 100% used [7f42b0000, 7f44c0000, 7f44c0000)
to space 2112K, 0% used [7f40a0000, 7f40a0000, 7f42b0000)
concurrent mark-sweep generation total 63872K, used 6053K [7f44c0000, 7f8320000, 7fae00000)
concurrent-mark-sweep perm gen total 30656K, used 30476K [7fae00000, 7fcbf0000, 800000000)
编辑:问题是由于另一个执行者(默默地)启动了我在发布问题之前删除的代码,因为我认为它无关紧要。无论如何,Peter Lawrey答案仍然是有值(value)的输入,因此它被接受了。
最佳答案
在关闭执行器之前,您正在等待 feedingThread 终止 (feedingThread.join(0)
),并且馈送线程将继续其 while(true) 循环,直到执行器停止.
关于java - Executors.newFixedThreadPool 没有终止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7321918/
我有创建 N 个线程(例如 50 个线程)的方法。这些创建的线程使用 Executors.newFixedThreadPool(20) 创建新线程。因此,50 * 20 = 1000 或更多可能会在应
我正在尝试诊断使用 WSO2 身份管理时遇到的问题。 package org.wso2.carbon.identity.mgt; import java.util.concurrent.Executo
这可能是一个有点老的问题。我对 Jboss 环境中的 ExecutorService 工作感到困惑。我使用了一些示例代码,其中我使用 ExecutorService 提交任务,一切完成后我关闭执行程序
请帮助我理解 newFixedThreadPool(或缓存)的内部流程 当我们写下面的语句时,ExecutorService e=Executors.newFixedThreadPool(3); e.
我正在努力弄清楚如何集中资源,我开始怀疑我的线程可能是问题所在(不是 100%,但一直在试验)。我想要做的事情的要点是创建一个服务器 channel 池,然后查看线程是否正在使用它们。我已经成功地获得
我要火了 Executors.newFixedThreadPool(100); 在一个主程序中,生产者提供工作的速度比消费者跟上的速度快。有没有办法查看 newFixedThreadPool 使用的底
我使用了 CopyOnWriteArrayList 集合对象,它包含 1000 个 URL。每个 URL 表示一个文件。 我想使用多线程池机制并行下载这些 URL 文件。 尝试使用以下代码:
对于特定操作,应用程序创建两个线程(执行不同的任务),主线程不会等待它。同样,对于某些情况,它也只能是一个线程。 如果我将其移至 Executors.newFixedThreadPool(),会有什么
我有一个服务方法,它需要并行调用三个方法,如下所示,以使 ServiceMethod() 运行得更快。 public void ServiceMethod() { ExecutorServic
我的英语不好。但我需要了解 newfixedthreadpool 的 . enter code here ExecutorService executorService = new FixedThre
我有一个要求,我需要处理一些当前现场表演的任务。这是一个计划任务,每分钟运行一次。 在任何给定的时刻,可以有任意数量的现场表演(尽管数量不能那么大,大约最多 10)。 所有的直播节目需要完成20多个功
我正在创建用户线程并将它们放入大小=5 的固定池中。我希望我的线程在 5 分钟内执行。这些线程在远程服务器上完成了一些数据库操作。但由于网络延迟,某些线程只是停止并等待远程服务器的响应,因此它会导致我
我对生产者-消费者模式的理解是,它可以使用生产者和消费者之间共享的队列来实现。生产者将工作提交到共享队列,消费者检索并处理它。也可以通过生产者直接提交给消费者来实现(Producer线程直接提交给Co
这个问题在这里已经有了答案: What does a "Cannot find symbol" or "Cannot resolve symbol" error mean? (18 个答案) 关闭
我正在使用 ConcurrentLinkedQueue 来存储计算步骤,并使用 Executors.newFixedThreadPool 创建的 ExecutorService 来执行它们。我的问题是
这个问题在这里已经有了答案: Executors.newCachedThreadPool() versus Executors.newFixedThreadPool() (8 个答案) 关闭 7 年
我正在尝试更改报告的执行并以并发方式完成。在“连续模式”下,执行测试需要 30 秒,而在使用并发模式时,我需要 27 秒(考虑到必须连续执行几个步骤,我对结果没意见)。 我仍然不明白的是这一行: Ex
正如它在 javadoc 中所说的那样 The threads in the pool will exist until it is explicitly shutdowned by Executor
我的程序应该在多线程下运行很长时间。我需要能够为线程设置超时,一旦线程终止,我想再次启动它。这是我的代码: @Test public void testB() throws Inter
我想启动很多任务来在 +-42Mio 记录的数据库上运行。我想以 5000 条记录/时间的批处理运行此程序(结果为 850 个任务)。我还想限制 java 开始为我执行此操作的线程数(最多 16 个)
我是一名优秀的程序员,十分优秀!