java项目中的多线程实践记录
程序员文章站
2022-03-09 19:05:38
项目开发中对于一些数据的处理需要用到多线程,比如文件的批量上传,数据库的分批写入,大文件的分段下载等。 通常会使用spring自带的线程池处理,做到对线程的定制化处理和更好的可控,建议使用自定义的线程...
项目开发中对于一些数据的处理需要用到多线程,比如文件的批量上传,数据库的分批写入,大文件的分段下载等。 通常会使用spring自带的线程池处理,做到对线程的定制化处理和更好的可控,建议使用自定义的线程池。 主要涉及到的几个点:
1. 自定义线程工厂(threadfactorybuilder),主要用于线程的命名,方便追踪
2. 自定义的线程池(threadpoolexecutorutils),可以按功能优化配置参数
3. 一个抽象的多线程任务处理接口(operationthreadservice)和通用实现(operationthread)
4. 统一的调度实现(multithreadoperationutils)
核心思想:分治归并,每个线程计算出自己的结果,最后统一汇总。
import org.slf4j.logger; import org.slf4j.loggerfactory; import java.util.concurrent.threadfactory; import java.util.concurrent.atomic.atomiclong; /** * description: 自定义实现的线程池,遵循alibaba编程规范,使用threadpoolexecutor创建线程池使用 * 设置更有描述意义的线程名称,默认的threadfactory,它给线程起名字大概规律就是pool-m-thread-n,如pool-1-thread-1。 * 当分析一个thread dump时,很难知道线程的目的,需要有描述意义的线程名称来分析追踪问题 * 设置线程是否是守护线程,默认的threadfactory总是提交非守护线程 * 设置线程优先级,默认threadfactory总是提交的一般优先级线程 * <p> * customthreadfactorybuilder类实现了一种优雅的builder mechanism方式去得到一个自定义threadfactory实例。 * threadfactory接口中有一个接受runnable类型参数的方法newthread(runnable r), * 业务的factory逻辑就应该写在这个方法中,去配置线程名称、优先级、守护线程状态等属性。 * 原文链接:https://blog.csdn.net/zombres/article/details/80497515 * * @author hlingoes * @date 2019/12/22 0:45 */ public class threadfactorybuilder { private static logger logger = loggerfactory.getlogger(threadfactorybuilder.class); private string nameformat = null; private boolean daemon = false; private int priority = thread.norm_priority; public threadfactorybuilder setnameformat(string nameformat) { if (nameformat == null) { throw new nullpointerexception(); } this.nameformat = nameformat; return this; } public threadfactorybuilder setdaemon(boolean daemon) { this.daemon = daemon; return this; } public threadfactorybuilder setpriority(int priority) { if (priority < thread.min_priority) { throw new illegalargumentexception(string.format( "thread priority (%s) must be >= %s", priority, thread.min_priority)); } if (priority > thread.max_priority) { throw new illegalargumentexception(string.format( "thread priority (%s) must be <= %s", priority, thread.max_priority)); } this.priority = priority; return this; } public threadfactory build() { return build(this); } private static threadfactory build(threadfactorybuilder builder) { final string nameformat = builder.nameformat; final boolean daemon = builder.daemon; final integer priority = builder.priority; final atomiclong count = new atomiclong(0); return (runnable runnable) -> { thread thread = new thread(runnable); if (nameformat != null) { thread.setname(string.format(nameformat, count.getandincrement())); } if (daemon != null) { thread.setdaemon(daemon); } thread.setpriority(priority); thread.setuncaughtexceptionhandler((t, e) -> { string threadname = t.getname(); logger.error("error occurred! threadname: {}, error msg: {}", threadname, e.getmessage(), e); }); return thread; }; } }
import org.slf4j.logger; import org.slf4j.loggerfactory; import java.util.concurrent.*; /** * description: 创建通用的线程池 * <p> * corepoolsize:线程池中核心线程数量 * maximumpoolsize:线程池同时允许存在的最大线程数量 * 内部处理逻辑如下: * 当线程池中工作线程数小于corepoolsize,创建新的工作线程来执行该任务,不管线程池中是否存在空闲线程。 * 如果线程池中工作线程数达到corepoolsize,新任务尝试放入队列,入队成功的任务将等待工作线程空闲时调度。 * 1. 如果队列满并且线程数小于maximumpoolsize,创建新的线程执行该任务(注意:队列中的任务继续排序)。 * 2. 如果队列满且线程数超过maximumpoolsize,拒绝该任务 * <p> * keepalivetime * 当线程池中工作线程数大于corepoolsize,并且线程空闲时间超过keepalivetime,则这些线程将被终止。 * 同样,可以将这种策略应用到核心线程,通过调用allowcorethreadtimeout来实现。 * <p> * blockingqueue * 任务等待队列,用于缓存暂时无法执行的任务。分为如下三种堵塞队列: * 1. 直接递交,如synchronousqueue,该策略直接将任务直接交给工作线程。如果当前没有空闲工作线程,创建新线程。 * 这种策略最好是配合unbounded线程数来使用,从而避免任务被拒绝。但当任务生产速度大于消费速度,将导致线程数不断的增加。 * 2. *队列,如linkedblockingqueue,当工作的线程数达到核心线程数时,新的任务被放在队列上。 * 因此,永远不会有大于corepoolsize的线程被创建,maximumpoolsize参数失效。 * 这种策略比较适合所有的任务都不相互依赖,独立执行。 * 但是当任务处理速度小于任务进入速度的时候会引起队列的无限膨胀。 * 3. 有界队列,如arrayblockingqueue,按前面描述的corepoolsize、maximumpoolsize、blockingqueue处理逻辑处理。 * 队列长度和maximumpoolsize两个值会相互影响: * 长队列 + 小maximumpoolsize。会减少cpu的使用、操作系统资源、上下文切换的消耗,但是会降低吞吐量, * 如果任务被频繁的阻塞如io线程,系统其实可以调度更多的线程。 * 短队列 + 大maximumpoolsize。cpu更忙,但会增加线程调度的消耗. * 总结一下,io密集型可以考虑多些线程来平衡cpu的使用,cpu密集型可以考虑少些线程减少线程调度的消耗 * * @author hlingoes * @citation https://blog.csdn.net/wanghao112956/article/details/99292107 * @citation https://www.jianshu.com/p/896b8e18501b * @date 2020/2/26 0:46 */ public class threadpoolexecutorutils { private static logger logger = loggerfactory.getlogger(threadfactorybuilder.class); public static int defaultcoresize = runtime.getruntime().availableprocessors(); private static int pollwaitingtime = 60; private static int defaultqueuesize = 10 * 1000; private static int defaultmaxsize = 4 * defaultcoresize; private static string threadname = "custom-pool"; /** * description: 创建线程池 * * @param waitingtime * @param coresize * @param maxpoolsize * @param queuesize * @return java.util.concurrent.threadpoolexecutor * @author hlingoes 2020/4/12 */ public static threadpoolexecutor getexecutorpool(int waitingtime, int coresize, int maxpoolsize, int queuesize) { pollwaitingtime = waitingtime; defaultcoresize = coresize; defaultmaxsize = maxpoolsize; defaultqueuesize = queuesize; return getexecutorpool(); } /** * description: 创建线程池 * * @param waitingtime * @param queuesize * @param maxpoolsize * @return java.util.concurrent.threadpoolexecutor * @author hlingoes 2020/3/20 */ public static threadpoolexecutor getexecutorpool(int waitingtime, int queuesize, int maxpoolsize) { pollwaitingtime = waitingtime; defaultqueuesize = queuesize; defaultmaxsize = maxpoolsize; return getexecutorpool(); } /** * description: 创建线程池 * * @param waitingtime * @param queuesize * @return java.util.concurrent.threadpoolexecutor * @author hlingoes 2020/3/20 */ public static threadpoolexecutor getexecutorpool(int waitingtime, int queuesize) { pollwaitingtime = waitingtime; defaultqueuesize = queuesize; return getexecutorpool(); } /** * description: 创建线程池 * * @param waitingtime * @return java.util.concurrent.threadpoolexecutor * @author hlingoes 2020/3/20 */ public static threadpoolexecutor getexecutorpool(int waitingtime) { pollwaitingtime = waitingtime; return getexecutorpool(); } /** * description: 创建线程池 * * @param * @return java.util.concurrent.threadpoolexecutor * @author hlingoes 2020/6/6 */ public static threadpoolexecutor getexecutorpool() { return getexecutorpool(threadname); } /** * description: 创建线程池 * * @param * @return java.util.concurrent.threadpoolexecutor * @author hlingoes 2020/3/20 */ public static threadpoolexecutor getexecutorpool(string threadname) { threadfactory factory = new threadfactorybuilder() .setnameformat(threadname + "-%d") .build(); blockingqueue<runnable> queue = new arrayblockingqueue<>(defaultqueuesize); threadpoolexecutor poolexecutor = new threadpoolexecutor(defaultcoresize, defaultmaxsize, 60, timeunit.seconds, queue, factory, (r, executor) -> { /** * 自定义的拒绝策略 * 当提交给线程池的某一个新任务无法直接被线程池中“核心线程”直接处理, * 又无法加入等待队列,也无法创建新的线程执行; * 又或者线程池已经调用shutdown()方法停止了工作; * 又或者线程池不是处于正常的工作状态; * 这时候threadpoolexecutor线程池会拒绝处理这个任务 */ if (!executor.isshutdown()) { logger.warn("threadpoolexecutor is over working, please check the thread tasks! "); } }) { /** * description: 针对提交给线程池的任务可能会抛出异常这一问题, * 可自行实现线程池的afterexecute方法,或者实现thread的uncaughtexceptionhandler接口 * threadfactorybuilder中已经实现了uncaughtexceptionhandler接口,这里是为了进一步兼容 * * @param r * @param t * @return void * @author hlingoes 2020/5/27 */ @override protected void afterexecute(runnable r, throwable t) { super.afterexecute(r, t); if (t == null && r instanceof future<?>) { try { future<?> future = (future<?>) r; future.get(); } catch (cancellationexception ce) { t = ce; } catch (executionexception ee) { t = ee.getcause(); } catch (interruptedexception ie) { thread.currentthread().interrupt(); } } if (t != null) { logger.error("customthreadpool error msg: {}", t.getmessage(), t); } } }; /** * 备选方法,事先知道会有很多任务会提交给这个线程池,可以在初始化的时候完成核心线程的创建,提高系统性能 * 一个线程池创建出来之后,在没有给它提交任何任务之前,这个线程池中的线程数为0 * 一个个去创建新线程开销太大,影响系统性能 * 可以在创建线程池的时候就将所有的核心线程全部一次性创建完毕,系统起来之后就可以直接使用 */ poolexecutor.prestartallcorethreads(); return poolexecutor; } /** * description: 所有任务执行完之后,释放线程池资源 * * @param pool * @return void * @author hlingoes 2020/3/20 */ public static void closeaftercomplete(threadpoolexecutor pool) { /** * 当线程池调用该方法时,线程池的状态则立刻变成shutdown状态。 * 此时,则不能再往线程池中添加任何任务,否则将会抛出rejectedexecutionexception异常。 * 但是,此时线程池不会立刻退出,直到添加到线程池中的任务都已经处理完成,才会退出。 * 唯一的影响就是不能再提交任务了,正则执行的任务即使在阻塞着也不会结束,在排队的任务也不会取消。 */ pool.shutdown(); try { /** * awaittermination方法可以设定线程池在关闭之前的最大超时时间, * 如果在超时时间结束之前线程池能够正常关闭,这个方法会返回true,否则,一旦超时,就会返回false。 * 通常来说不可能无限制地等待下去,因此需要预估一个合理的超时时间,然后使用这个方法 */ if (!pool.awaittermination(pollwaitingtime, timeunit.seconds)) { /** * 如果awaittermination方法返回false,又希望尽可能在线程池关闭之后再做其他资源回收工作, * 可以考虑再调用一下shutdownnow方法, * 此时队列中所有尚未被处理的任务都会被丢弃,同时会设置线程池中每个线程的中断标志位。 * shutdownnow并不保证一定可以让正在运行的线程停止工作,除非提交给线程的任务能够正确响应中断。 * 到了这一步,可以考虑继续调用awaittermination方法,或者直接放弃,去做接下来要做的事情。 */ pool.shutdownnow(); } } catch (interruptedexception e) { logger.error("threadpool overtime: {}", e.getmessage()); //(重新)丢弃所有尚未被处理的任务,同时会设置线程池中每个线程的中断标志位 pool.shutdownnow(); // 保持中断状态 thread.currentthread().interrupt(); } } }
import java.util.arrays; /** * description: 分段参数 * * @author hlingoes * @date 2020/5/22 23:50 */ public class partitionelements { /** * 当前的分段任务索引 */ private long index; /** * 批量处理的任务个数 */ private long batchcounts; /** * 任务的分段个数 */ private long partitions; /** * 任务总数 */ private long totalcounts; private object[] args; private object data; public partitionelements() { } public partitionelements(long batchcounts, long totalcounts, object[] args) { this.batchcounts = batchcounts; this.totalcounts = totalcounts; this.partitions = aquirepartitions(totalcounts, batchcounts); this.args = args; } public partitionelements(long index, partitionelements elements) { this.index = index; this.batchcounts = elements.getbatchcounts(); this.partitions = elements.getpartitions(); this.totalcounts = elements.gettotalcounts(); this.args = elements.getargs(); } /** * description: 根据任务总量和单次任务处理量,计算任务个数 * * @param totalcounts * @param batchcounts * @return long partitions * @author hlingoes 2020/5/23 */ public long aquirepartitions(long totalcounts, long batchcounts) { long partitions = totalcounts / batchcounts; if (totalcounts % batchcounts != 0) { partitions = partitions + 1; } // 兼容任务总数total = 1 的情况 if (partitions == 0) { partitions = 1; } return partitions; } public long getindex() { return index; } public void setindex(long index) { this.index = index; } public long getbatchcounts() { return batchcounts; } public void setbatchcounts(long batchcounts) { this.batchcounts = batchcounts; } public long getpartitions() { return partitions; } public void setpartitions(long partitions) { this.partitions = partitions; } public long gettotalcounts() { return totalcounts; } public void settotalcounts(long totalcounts) { this.totalcounts = totalcounts; } public object[] getargs() { return args; } public void setargs(object[] args) { this.args = args; } public object getdata() { return data; } public void setdata(object data) { this.data = data; } @override public string tostring() { return "partitionelements{" + "index=" + index + ", batchcounts=" + batchcounts + ", partitions=" + partitions + ", totalcounts=" + totalcounts + ", args=" + arrays.tostring(args) + '}'; } }
import cn.henry.study.common.bo.partitionelements; /** * description: 业务分治归并处理接口 * * @author hlingoes 2020/5/22 */ public interface operationthreadservice { /** * description: 任务总量 * * @param args * @return long * @throws exception * @author hlingoes 2020/5/22 */ long count(object[] args) throws exception; /** * description: 在多线程分治任务之前的预处理方法,返回业务数据 * * @param args * @return object * @throws exception * @author hlingoes 2020/5/23 */ object prepare(object[] args) throws exception; /** * description: 多线程的任务逻辑 * * @param elements * @return java.lang.object * @throws exception * @author hlingoes 2020/5/24 */ object invoke(partitionelements elements) throws exception; /** * description: 多线程单个任务结束后的归并方法 * * @param elements * @param object * @return void * @throws exception * @author hlingoes 2020/5/23 */ void post(partitionelements elements, object object) throws exception; /** * description: 归并结果之后的尾处理 * * @param object * @return java.lang.object * @throws exception * @author hlingoes 2020/5/24 */ object finished(object object) throws exception; }
import cn.henry.study.common.bo.partitionelements; import cn.henry.study.common.service.operationthreadservice; import cn.henry.study.common.thread.operationthread; import org.slf4j.logger; import org.slf4j.loggerfactory; import java.util.arraylist; import java.util.concurrent.future; import java.util.concurrent.threadpoolexecutor; /** * description: 多线程业务分治归并处理 * * @author hlingoes * @date 2020/5/22 0:42 */ public class multithreadoperationutils { private static logger logger = loggerfactory.getlogger(multithreadoperationutils.class); /** * description: 开启多线程执行任务,按顺序归并处理任务结果 * 按照默认线程数,计算批量任务数 * * @param service * @param args * @return void * @author hlingoes 2020/5/23 */ public static object batchexecute(operationthreadservice service, object[] args) throws exception { long totalcounts = service.count(args); long batchcounts = totalcounts / threadpoolexecutorutils.defaultcoresize; // 兼容任务少于核心线程数的情况 if (batchcounts == 0) { batchcounts = 1l; } partitionelements elements = new partitionelements(batchcounts, totalcounts, args); return batchexecute(service, elements); } /** * description: 开启多线程执行任务,按顺序归并处理任务结果 * 给定每页显示条目个数 * * @param service * @param batchcounts * @param args * @return void * @author hlingoes 2020/5/23 */ public static object batchexecute(operationthreadservice service, long batchcounts, object[] args) throws exception { long totalcounts = service.count(args); partitionelements elements = new partitionelements(batchcounts, totalcounts, args); return batchexecute(service, elements); } /** * description: 开启多线程执行分治任务,按顺序归并处理任务结果 * * @param service * @param elements * @return void * @author hlingoes 2020/5/23 */ private static object batchexecute(operationthreadservice service, partitionelements elements) throws exception { threadpoolexecutor executor = threadpoolexecutorutils.getexecutorpool(); // 在多线程分治任务之前的预处理方法,返回业务数据 final object obj = service.prepare(elements.getargs()); // 预防list和map的resize,初始化给定容量,可提高性能 arraylist<future<partitionelements>> futures = new arraylist<>((int) elements.getpartitions()); operationthread opthread = null; future<partitionelements> future = null; // 添加线程任务 for (int i = 0; i < elements.getpartitions(); i++) { // 划定任务分布 opthread = new operationthread(new partitionelements(i + 1, elements), service); future = executor.submit(opthread); futures.add(future); } // 关闭线程池 executor.shutdown(); // 阻塞线程,同步处理数据 futures.foreach(f -> { try { // 线程单个任务结束后的归并方法 service.post(f.get(), obj); } catch (exception e) { logger.error("post routine fail", e); } }); return service.finished(obj); } }
import cn.henry.study.common.bo.partitionelements; import cn.henry.study.common.service.operationthreadservice; import cn.henry.study.common.utils.multithreadoperationutils; import org.junit.test; import org.slf4j.logger; import org.slf4j.loggerfactory; import java.util.arraylist; import java.util.list; /** * description: 多线程的测试用例 * * @author hlingoes * @date 2020/6/12 20:52 */ public class multithreadservicetest implements operationthreadservice { private static logger logger = loggerfactory.getlogger(multithreadservicetest.class); @override public long count(object[] args) throws exception { return 100l; } @override public object prepare(object[] args) throws exception { return "success"; } @override public object invoke(partitionelements elements) throws exception { list<object> list = new arraylist<>((int) elements.getbatchcounts()); for (int i = 0; i < elements.getindex(); i++) { list.add("test_" + i); } return list; } @override public void post(partitionelements elements, object object) throws exception { string insertsql = "insert into test (id) values "; stringbuilder sb = new stringbuilder(); list<object> datas = (list<object>) elements.getdata(); for (int i = 0; i < datas.size(); i++) { if ((i + 1) % 5 == 0 || (i + 1) == datas.size()) { sb.append("('" + datas.get(i) + "')"); logger.info("{}: 测试insert sql: {}", elements, insertsql + sb.tostring()); sb = new stringbuilder(); } else { sb.append("('" + datas.get(i) + "'),"); } } } @override public object finished(object object) throws exception { return object; } @test public void testbatchexecute() { try { object object = multithreadoperationutils.batchexecute(new multithreadservicetest(), 10, new object[]{"test"}); logger.info("测试完成: {}", object.tostring()); } catch (exception e) { e.printstacktrace(); } } }
总结:这是一个抽象之后的多线程业务流程处理方式,已在生产环境使用,多线程的重点在业务分割和思想上,有清晰的责任划分。
到此这篇关于java项目中的多线程实践的文章就介绍到这了,更多相关java多线程实践内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!