• Java的虚拟线程和结构化并发,含完整示例代码


    目录

    一、Java的线程模型

    二、Quasar From parallel universe

    三、Project loom


    一、Java的线程模型

    Java语言对于线程进行了完整抽象,你无需关注各类操作系统的差异,写出并发程序不需要特别陡峭的学习曲线,想想就特别美好。

    但现实是这一统一的线程模型在云原生时代反而失去了优势,因为与操作系统1:1对应的线程模型,导致Java的线程是一种非常重量级的线程(内存占用和上下文切换)。

    💡 64 位 Linux 上 HotSpot 的线程栈容量默认是1MB,线程的内核元数据(Kernel Metadata)还要额外消耗 2-16KB 内存,所以单个虚拟机的最大线程数量一般只会设置到 200 至 400 条,当程序员把数以百万计的请求往线程池里面灌时,系统即便能处理得过来,其中的切换损耗也相当可观的。

    这种模型对于CPU密集型的应用会有更好的资源利用率,但对于IO密集型的就会十分痛苦。为提高Java中IO的性能,我们大量使用Reactor编程模型、Netty的非阻塞多路复用IO几乎成为了规范,但这类IO场景在底层实现上有两大挑战:

    1.大量线程,IO操作越多,为提高吞吐量往往增加更多线程。

    2.异步编程,为避免线程阻塞,必须采用异步编程,但很明显,异步可读性差、嵌套过深、反人类。

    如何解决这个问题呢?

    核心是要重新设计线程模型和结构化并发。

    Green Thread是上古Java采用过的模型,OS Thread是当前Java使用过的,Virtual Thread是正在努力进行的。

     结构化并发是 2016 年才提出的新的并发编程概念。可以让你像写同步代码的方式写异步代码。

    从两个项目开始深入介绍一下Java在线程模型上的努力和发展趋势。

    二、Quasar From parallel universe

    Quasar 是一个为 Java 和Kotlin提供高性能轻量级线程、类似 Go 的channels、类似 Erlang 的 actors 以及其他异步编程工具的库。

    Quasar 由Parallel Universe开发并作为自由软件发布,根据 Eclipse 公共许可证和GNU Lesser General Public License 获得双重许可。

    不过这个框架在2018年已停止维护。目前已迁移到即将介绍的Project Loom中。

     虽然已经废弃,但在2018年属于Java非常前沿的技术,当时也做了具体的调研和开发验证,最大的作用是轻量级线程Fiber的运用和像写同步代码的方式写异步代码的编程模式(不过实现这种效果还是比较复杂)。

    以下是当时改造Tomcat以支持servlet逻辑中fiber线程的运用:

    maven配置

    1. <dependency>
    2. <groupId>co.paralleluniverse</groupId>
    3. <artifactId>quasar-core</artifactId>
    4. <version>0.7.10</version>
    5. </dependency>

    扩展Tomcat的业务执行线程池:

    1. /**
    2. * 测试 使用Servlet的方式,而非替换内部线程执行
    3. * 2018/8/28.
    4. */
    5. public class FiberTomcatThreaPool extends StandardThreadExecutor {
    6. public FiberTomcatThreaPool(){
    7. super();
    8. System.out.println("[Fiber] init..."+Serializer.class);
    9. }
    10. @Override
    11. public void execute(Runnable command, long timeout, TimeUnit unit) {
    12. System.out.println("[Fiber] begin..."+Serializer.class);
    13. System.out.println("[Fiber] begin..."+Thread.currentThread().getContextClassLoader());
    14. new Fiber<Void>("task", new SuspendableRunnable() {
    15. @Override
    16. public void run() throws SuspendExecution, InterruptedException {
    17. command.run();
    18. }
    19. }).start();
    20. }
    21. @Override
    22. public void execute(Runnable command) {
    23. System.out.println("[Fiber] begin..."+Serializer.class);
    24. System.out.println("[Fiber] begin..."+Thread.currentThread().getContextClassLoader());
    25. new Fiber<Void>("task", new SuspendableRunnable() {
    26. @Override
    27. public void run() throws SuspendExecution, InterruptedException {
    28. System.out.println("[Fiber] run...");
    29. command.run();
    30. }
    31. }).start();
    32. }
    33. }

    可以看到这种使用轻量级线程的方式并没有像Go语言那样从语言级做到支持,写起来依然显得别扭。这也是后起之秀Project loom的努力方向。

    三、Project loom

    Loom 项目的目标是让 Java 支持额外的N:M 线程模型 ,请注意是“额外支持”,而不是像当年从绿色线程过渡到内核线程那样的直接替换,也不是像 Solaris 平台的 HotSpot 虚拟机那样通过参数让用户二选其一。Loom 项目新增加一种“虚拟线程”(Virtual Thread,以前也叫Fiber ),本质上它是一种有栈协程(Stackful Coroutine),多条虚拟线程可以映射到同一条物理线程之中,在用户空间中自行调度,每条虚拟线程的栈容量也可由用户自行决定。

    Loom 项目的另一个目标是要尽最大可能保持原有统一线程模型的交互方式,通俗地说就是原有的 Thread、J.U.C、NIO、Executor、Future、ForkJoinPool 等这些多线程工具都应该能以同样的方式支持新的虚拟线程,原来多线程中你理解的概念、编码习惯大多数都能够继续沿用。

    Loom 的另一个重点改进是支持结构化并发 (Structured Concurrency),就是上文提到的异步改同步的编程方式。

    https://www.baeldung.com/openjdk-project-loom

    如果运行Loom功能,请参考本人另外一篇文章:

    1. 启动一个虚拟线程,代码示例如下:
    1. public static void testVT() throws InterruptedException {
    2. System.out.println("Current jdk version:"+System.getProperty("java.version") );
    3. System.out.println("1-Run in main thread, Currrent ThreadName:"+Thread.currentThread().getName());
    4. Thread thread1 = Thread.ofVirtual().start(new Runnable() {
    5. @Override
    6. public void run() {
    7. System.out.println("Run in virtual thread, Currrent ThreadName:"+Thread.currentThread());
    8. }
    9. });
    10. System.out.println("2-Run in main thread, Currrent ThreadName:"+Thread.currentThread().getName());
    11. thread1.join();
    12. Thread thread = new Thread(new Runnable(){
    13. @Override
    14. public void run() {
    15. System.out.println("Run in classic thread, Currrent ThreadName:"+Thread.currentThread().getName());
    16. }
    17. });
    18. thread.start();
    19. thread.join();
    20. }

    上述代码运行输出如下:

    1. Current jdk version:19-ea
    2. 1-Run in main thread, Currrent ThreadName:main
    3. 2-Run in main thread, Currrent ThreadName:main
    4. Run in virtual thread, Currrent ThreadName:VirtualThread[#21]/runnable@ForkJoinPool-1-worker-1
    5. Run in classic thread, Currrent ThreadName:Thread-0

    可以看到Virtual Thread是在ForkJoinPool的一个实际线程中运行。

    使用方式相对上文的Quasar已经有很大的改善,并且是在我们常用的Thread抽象之下,除了实例化,其他API大部分保持一致。

    1. 一个阻塞队列的测试示例
    1. private static void testQ() throws InterruptedException {
    2. var queue = new SynchronousQueue<String>();
    3. Thread.ofVirtual().start(() -> {
    4. try {
    5. System.out.println("Run in v thread :"+Thread.currentThread());
    6. Thread.sleep(Duration.ofSeconds(2));
    7. queue.put("done");
    8. System.out.println("finish v thread :"+Thread.currentThread());
    9. } catch (InterruptedException e) { }
    10. });
    11. System.out.println("Run in main thread :"+Thread.currentThread());
    12. String msg = queue.take();
    13. System.out.println("finish main thread :"+Thread.currentThread());
    14. }

    输出:

    1. Run in main thread :Thread[#1,main,5,main]
    2. Run in v thread :VirtualThread[#21]/runnable@ForkJoinPool-1-worker-1
    3. finish v thread :VirtualThread[#21]/runnable@ForkJoinPool-1-worker-1
    4. finish main thread :Thread[#1,main,5,main]

    根据日志打印顺序,可以看出行为跟普通线程完全一致。

    再来看下一个Loom的重点特性:结构化并发。

    假设有如下传统单线程的任务:

    1. //父任务
    2. Response handle() throws IOException {
    3. String theUser = findUser();
    4. int theOrder = fetchOrder();
    5. return new Response(theUser, theOrder);
    6. }
    7. //子任务1
    8. private static String findUser() throws InterruptedException {
    9. System.out.println("begin-Run in findUser :"+Thread.currentThread());
    10. Thread.sleep(Duration.ofSeconds(2));
    11. System.out.println("end-Run in findUser :"+Thread.currentThread());
    12. return "return of findUser";
    13. }
    14. //子任务2
    15. private static String fetchOrder() throws InterruptedException {
    16. System.out.println("begin-Run in fetchOrder :"+Thread.currentThread());
    17. Thread.sleep(Duration.ofSeconds(2));
    18. System.out.println("end-Run in fetchOrder :"+Thread.currentThread());
    19. return "return of fetchOrder";
    20. }
    21. static class Response{
    22. String p1;
    23. String p2;
    24. Response(String p1,String p2){
    25. this.p1 = p1;
    26. this.p2 = p2;
    27. }
    28. @Override
    29. public String toString() {
    30. return "Response{" +
    31. "p1='" + p1 + '\\'' +
    32. ", p2='" + p2 + '\\'' +
    33. '}';
    34. }
    35. }

    代码结构和运行结构完全一致,易理解、易调试,这是典型的面向过程程序,同时是结构化的,但随着在当前线程模型的约束下,为压榨计算机资源,实现高性能,采用多线程并发运行,被改造成如下的形式。

    传统多线程执行使用如下代码:

    1. Response handle() throws ExecutionException, InterruptedException {
    2. Future<String> user = executorService.submit(() -> findUser());
    3. Future<Integer> order = executorService.submit(() -> fetchOrder());
    4. String theUser = user.get(); // 连接findUser
    5. int theOrder = order.get(); // 连接fetchOrder
    6. return new Response(theUser, theOrder);
    7. }

    handle定义为父任务,findUser和fetchOrder是子任务,通过Future的get方法阻塞等待结果。

    1.阻塞线程造成线程资源浪费和上下文切换开销;

    2.子任务独立运行,父任务失败无法终止子任务;

    3.子任务具备独立线程堆栈,调试非常麻烦;

    4.代码虽然是按顺序写的,但是执行过程却是意大利面式的,非结构化的。

    这就是所谓的非结构化的并发编程

    因此在2016 年,Martin Sústrik 在他的博文中创造了“结构化并发”这个术语, Nathaniel J. Smith 在他关于结构化并发的文章中推广了这个术语。

    <aside> 💡 结构化的意思是,如果你生成了什么东西,你必须等待并连接它。这里的“结构”与它在结构化编程中的含义相似。代码的块结构反映了程序的运行时行为。因此,就像结构化编程提供了顺序控制流保证,结构化并发也为并发提供了同样的保证。

    </aside>

    在Loom的努力下,提出了结构化并发的JEP 428项目,在不同线程中运行的多个任务视为原子操作,简化多线程编程。它可以简化错误处理和取消操作,提高可靠性,并增强可观察性。

    使用 StructuredTaskScope 类来组织并发代码,这个类将把一组子任务视为一个单元。子任务通过单独的线程创建,然后连接成一个单元,也可以作为一个单元进行取消。子任务的异常或执行结果将由父任务进行聚合和处理。

    实现方式如下:

    1. private static Response handle() throws ExecutionException, InterruptedException {
    2. System.out.println("1-Run in main thread :"+Thread.currentThread());
    3. var scope = new StructuredTaskScope.ShutdownOnFailure();
    4. System.out.println("2-Run in main thread :"+Thread.currentThread());
    5. Future<String> user = scope.fork(() -> findUser());
    6. System.out.println("3-Run in main thread :"+Thread.currentThread());
    7. Future<String> order = scope.fork(() -> fetchOrder());
    8. System.out.println("4-Run in main thread :"+Thread.currentThread());
    9. scope.join(); // 连接
    10. scope.throwIfFailed(); // 抛出错误
    11. System.out.println("5-Run in main thread :"+Thread.currentThread());
    12. // 聚合结果
    13. return new Response(user.resultNow(), order.resultNow());
    14. }

    通过以下命令执行,注意参数--release 19 --enable-preview --add-modules jdk.incubator.concurrent,一个都不能少。/Applications/jdk-19.jdk/Contents/Home/bin/是我JDK 19-ea的安装目录。

    /Applications/jdk-19.jdk/Contents/Home/bin/javac --release 19 --enable-preview --add-modules jdk.incubator.concurrent com/echx/jdk19/TestLoom.java
    

    编译输出如下(成功!警告可忽略):

    警告: 使用 incubating 模块: jdk.incubator.concurrent 注: com/echx/jdk19/TestLoom.java 使用 Java SE 19 的预览功能。 注: 有关详细信息,请使用 -Xlint:preview 重新编译。 1 个警告

    开始运行

    /Applications/jdk-19.jdk/Contents/Home/bin/java --enable-preview --add-modules jdk.incubator.concurrent com.echx.jdk19.TestLoom
    

    运行结果如下:

    1-Run in main thread :Thread[#1,main,5,main]

    2-Run in main thread :Thread[#1,main,5,main]

    3-Run in main thread :Thread[#1,main,5,main]

    begin-Run in findUser :VirtualThread[#21]/runnable@ForkJoinPool-1-worker-1

    4-Run in main thread :Thread[#1,main,5,main]

    begin-Run in fetchOrder :VirtualThread[#23]/runnable@ForkJoinPool-1-worker-2

    end-Run in findUser :VirtualThread[#21]/runnable@ForkJoinPool-1-worker-2

    end-Run in fetchOrder :VirtualThread[#23]/runnable@ForkJoinPool-1-worker-1

    5-Run in main thread :Thread[#1,main,5,main]

    Response{p1='return of findUser', p2='return of fetchOrder'}

  • 相关阅读:
    磕磕绊绊的双非硕秋招之路小结
    linux操作系统概述
    Arrays 中的 asList()方法
    net core天马行空系列-微服务篇:全声明式http客户端feign快速接入微服务中心nacos
    认识哈希表和哈希表的实现
    “暂停加息,股市低迷:242只股票创新低,比特币突破2.8万美元后看涨趋势不可挡!“
    Go源码--sync库(3):sync.Pool(1)
    Zookeeper集群 + Kafka集群
    LeetCode高频题:戈壁滩种树,一排n棵树,至少有k棵树存活时,最终形成的风景线有多少不同的情况
    百日筑基第五天-关于maven
  • 原文地址:https://blog.csdn.net/feng_zi0yhv/article/details/125562365