Java 21的Concurrency的笔记

Virtual Threads

在Linux系统下,按照用户线程和内核线程的关系来分类:

  • 1:1,即一个用户线程,对应一个内核线程。
    比如Linux的Pthread,JDK的Thread,STL的std::thread。
    优点是实现简单,线程的运行、调度、运行,均由操作系统完成。
    缺点是线程的数量受限,随着线程数量上升,操作系统调整线程运行的成本逐步上升。
  • N:1,即多个用户线程,对应一个内核线程。
    实现复杂,用户线程的调度、运行等工作在用户态,因此可以创建更多的线程。
    缺点是当一个用户线程被IO阻塞时,绑定在内核线程上的其它用户线程,同步被阻塞。
  • M:N,即用户线程和内核线程为多对多关系,二者不是强绑定关系。
    实现复杂,可以解决N:1方案存在的问题。

线程的使用方式:

  • 同步模式
    • 每请求每线程
    • 线程池
    • Reactor模式
  • 异步模式
    • 异步任务
    • 消息队列

官方文档

  • Virtual Threads

    However, a virtual thread isn't tied to a specific OS thread. A virtual thread still runs code on an OS thread. However, when code running in a virtual thread calls a blocking I/O operation, the Java runtime suspends the virtual thread until it can be resumed. The OS thread associated with the suspended virtual thread is now free to perform operations for other virtual threads.

    依据上述描述,Java的Virtual Threads有点类似前述的M:N的关系。

    Virtual threads are suitable for running tasks that spend most of the time blocked, often waiting for I/O operations to complete. However, they aren't intended for long-running CPU-intensive operations.

    依据上述说明,Java的Virtual Threads适合执行经常阻塞的任务,而不是长时间的计算密集型任务。

  • JEP 444

  • java.lang.Thread

  • Foreign Function and Memory API

参考资料

Structured Concurrency

  • Structured Concurrency

    This is a preview feature.

    作为预览版的特性,相关的API的设计目前仍然存在变数,因此当前不建议在项目中使用。
    从官方提供的样例看,对于某些临时创建线程池执行任务的场景,可以简化实现代码,同时质量更好。

        Callable<String> task1 = ...
        Callable<Integer> task2 = ...
    
        try (var scope = new StructuredTaskScope<Object>()) {
    
            Subtask<String> subtask1 = scope.fork(task1);
            Subtask<Integer> subtask2 = scope.fork(task2);
    
            scope.join();
    
            ... process results/exceptions ...
    
        } // close
    
  • JEP 453

  • Preview Language and VM Features

Thread-Local Variables

  • Thread-Local Variables
    不易跟踪、管理的可变性。
    生命周期的管理,创建、传播、读、写等,潜在的内存泄漏问题。
    不恰当的使用或者滥用,可能导致占用过多的内存资源。
posted @ 2024-09-08 20:16  jackieathome  阅读(18)  评论(0编辑  收藏  举报