先说现象:
生产环境有一个队列,一个生产者,一个消费者。莫名其妙的就不消费了。生产都正常。
然后排查,发现加一个 Thread.sleep就好了。
神奇,然后排查。最后做了一个demo。如下,
public class QueueTest {
public static Queue queue = new LinkedList();
public static Queue queue1 = new LinkedBlockingQueue<>();
public static void main(String[] args) {
ThreadPoolExecutor pool = new ThreadPoolExecutor(16, Integer.MAX_VALUE,
300L, TimeUnit.SECONDS,
new SynchronousQueue());
pool.execute(()->{
while (true){
try {
System.out.println("执行了放入");
queue.add(System.currentTimeMillis());
queue.add(System.currentTimeMillis());
queue.add(System.currentTimeMillis());
queue.add(System.currentTimeMillis());
queue.add(System.currentTimeMillis());
queue.add(System.currentTimeMillis());
queue.add(System.currentTimeMillis());
Thread.sleep(1);
} catch (Exception e) {
e.printStackTrace();
}
}
});
new Thread(()->{
}).start();
pool.execute(()->{
while (true){
try {
Long result = queue.poll();
// System.out.println(queue.size());
if(result!=null){
System.out.println("执行了取出");
System.out.println(queue.size()+":"+result);
}
// Thread.sleep(100);
} catch (Exception e) {
e.printStackTrace();
}
}
});
new Thread(()->{
}).start();
}
}
直接运行就会发现消费者有问题。换一个队列的实现就没问题。使用队列之前查过,说queue不会有线程安全的问题。我觉得也是。毕竟是一边进一边出。而且这个场景当我debug的时候就不会出现。看线程状态时,一个是sleep,一个是running,这个就让我很郁闷了。后来打印日志。感觉是idea的显示问题。其实两个线程都是running。
说结论,这是两个线程的场景。所以读数据有问题。LinkedList这个队列实现有问题,多线程状态下有问题。数据会丢失。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)