浅谈java中异步多线程超时导致的服务异常
程序员文章站
2024-03-13 08:38:57
在项目中为了提高大并发量时的性能稳定性,经常会使用到线程池来做多线程异步操作,多线程有2种,一种是实现runnable接口,这种没有返回值,一种是实现callable接口,...
在项目中为了提高大并发量时的性能稳定性,经常会使用到线程池来做多线程异步操作,多线程有2种,一种是实现runnable接口,这种没有返回值,一种是实现callable接口,这种有返回值。
当其中一个线程超时的时候,理论上应该不 影响其他线程的执行结果,但是在项目中出现的问题表明一个线程阻塞,其他线程返回的接口都为空。其实是个很简单的问题,但是由于第一次碰到,还是想了一些时间的。很简单,就是因为阻塞的那个线
程没有释放,并发量一大,线程池数量就满了,所以其他线程都处于等待状态。
附上一段自己写的调试代码,当想不出问题的时候,自己模拟的写写,说不定问题就出来了。
import java.util.concurrent.callable; import java.util.concurrent.executionexception; import java.util.concurrent.executorservice; import java.util.concurrent.executors; import java.util.concurrent.future; import java.util.concurrent.timeunit; import java.util.concurrent.timeoutexception; public class futuretest { public static void main(string[] args) throws interruptedexception, executionexception, timeoutexception { final executorservice exec = executors.newfixedthreadpool(1); callable<string> call = new callable<string>() { public string call() throws interruptedexception { // 开始执行耗时操作 thread.sleep(1000 * 2); return "1线程执行完成."; } }; callable<string> call2 = new callable<string>() { public string call() throws exception { // 开始执行耗时操作 // thread.sleep(1000 * 5); return "2线程执行完成."; } }; callable<string> call3 = new callable<string>() { public string call() throws exception { // 开始执行耗时操作 // thread.sleep(1000 * 5); return "3线程执行完成."; } }; future<string> future = exec.submit(call); future<string> future3 = exec.submit(call3); future<string> future2 = exec.submit(call2); string obj=""; string obj2 =""; string obj3 =""; try{ obj = future.get(500, timeunit.milliseconds); // 任务处理超时时间设为 }// 1 秒 catch(exception e){ system.out.println("处理超时啦...."); e.printstacktrace(); } try{ obj3 = future3.get(3000, timeunit.milliseconds); // 任务处理超时时间设为 }// 1 秒 catch(exception e){ system.out.println("处理超时啦...."); e.printstacktrace(); } try{ obj2 = future2.get(3000, timeunit.milliseconds);} catch(exception e){ system.out.println("处理超时啦...."); e.printstacktrace(); } system.out.println("3任务成功返回:" + obj3); system.out.println("2任务成功返回:" + obj2); system.out.println("1任务成功返回:" + obj); exec.shutdown(); } }
以上就是小编为大家带来的浅谈java中异步多线程超时导致的服务异常全部内容了,希望大家多多支持~