-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add support for switching scheduler
- Loading branch information
Showing
8 changed files
with
256 additions
and
15 deletions.
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
64
...s/src/test/scala-jdk21-only/org/apache/pekko/dispatch/ForkJoinPoolVirtualThreadSpec.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* license agreements; and to You under the Apache License, version 2.0: | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* This file is part of the Apache Pekko project, which was derived from Akka. | ||
*/ | ||
|
||
/* | ||
* Copyright (C) 2018-2022 Lightbend Inc. <https://www.lightbend.com> | ||
*/ | ||
|
||
package org.apache.pekko.dispatch | ||
|
||
import com.typesafe.config.ConfigFactory | ||
|
||
import org.apache.pekko | ||
import pekko.actor.{ Actor, Props } | ||
import pekko.testkit.{ ImplicitSender, PekkoSpec } | ||
import pekko.util.JavaVersion | ||
|
||
object ForkJoinPoolVirtualThreadSpec { | ||
val config = ConfigFactory.parseString(""" | ||
|virtual { | ||
| task-dispatcher { | ||
| mailbox-type = "org.apache.pekko.dispatch.SingleConsumerOnlyUnboundedMailbox" | ||
| throughput = 5 | ||
| fork-join-executor { | ||
| parallelism-factor = 2 | ||
| parallelism-max = 2 | ||
| parallelism-min = 2 | ||
| virtualize = on | ||
| } | ||
| } | ||
|} | ||
""".stripMargin) | ||
|
||
class ThreadNameActor extends Actor { | ||
|
||
override def receive = { | ||
case "ping" => | ||
sender() ! Thread.currentThread().getName | ||
} | ||
} | ||
|
||
} | ||
|
||
class ForkJoinPoolVirtualThreadSpec extends PekkoSpec(ForkJoinPoolVirtualThreadSpec.config) with ImplicitSender { | ||
import ForkJoinPoolVirtualThreadSpec._ | ||
|
||
"PekkoForkJoinPool" must { | ||
|
||
"support virtualization with Virtual Thread" in { | ||
val actor = system.actorOf(Props(new ThreadNameActor).withDispatcher("virtual.task-dispatcher")) | ||
for (_ <- 1 to 1000) { | ||
// External task submission via the default dispatcher | ||
actor ! "ping" | ||
expectMsgPF() { case name: String => name should include("virtual-thread-") } | ||
} | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
actor/src/main/scala/org/apache/pekko/dispatch/VirtualThreadSupportReflect.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.pekko.dispatch | ||
|
||
import org.apache.pekko.annotation.InternalApi | ||
|
||
import java.util.concurrent.{ ExecutorService, ThreadFactory } | ||
import scala.util.control.NonFatal | ||
|
||
/** | ||
* TODO remove this class once we drop Java 8 support | ||
*/ | ||
@InternalApi | ||
private[dispatch] object VirtualThreadSupportReflect { | ||
|
||
/** | ||
* Create a virtual thread factory with given executor, the executor will be used as the scheduler of | ||
* virtual thread. | ||
* | ||
* The executor should run task on platform threads. | ||
* | ||
* returns null if not supported. | ||
*/ | ||
def newThreadPerTaskExecutor(prefix: String, executor: ExecutorService): ExecutorService = { | ||
val factory = virtualThreadFactory(prefix, executor) | ||
VirtualThreadSupport.newThreadPerTaskExecutor(factory) | ||
} | ||
|
||
private def virtualThreadFactory(prefix: String, executor: ExecutorService): ThreadFactory = | ||
try { | ||
val builderClass = ClassLoader.getSystemClassLoader.loadClass("java.lang.Thread$Builder") | ||
val ofVirtualClass = ClassLoader.getSystemClassLoader.loadClass("java.lang.Thread$Builder$OfVirtual") | ||
val ofVirtualMethod = classOf[Thread].getDeclaredMethod("ofVirtual") | ||
var builder = ofVirtualMethod.invoke(null) | ||
if (executor != null) { | ||
val clazz = builder.getClass | ||
val field = clazz.getDeclaredField("scheduler") | ||
field.setAccessible(true) | ||
field.set(builder, executor) | ||
} | ||
val nameMethod = ofVirtualClass.getDeclaredMethod("name", classOf[String], classOf[Long]) | ||
val factoryMethod = builderClass.getDeclaredMethod("factory") | ||
builder = nameMethod.invoke(builder, prefix + "-virtual-thread-", 0L) | ||
factoryMethod.invoke(builder).asInstanceOf[ThreadFactory] | ||
} catch { | ||
case NonFatal(e) => | ||
throw new UnsupportedOperationException("Failed to create virtual thread factory", e) | ||
} | ||
} |
92 changes: 92 additions & 0 deletions
92
actor/src/main/scala/org/apache/pekko/dispatch/VirtualizedExecutorService.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.pekko.dispatch | ||
|
||
import org.apache.pekko.annotation.InternalApi | ||
|
||
import java.util | ||
import java.util.concurrent.{ Callable, ExecutorService, Future, TimeUnit } | ||
|
||
/** | ||
* A virtualized executor service that creates a new virtual thread for each task. | ||
* Will shut down the underlying executor service when this executor is being shutdown. | ||
* | ||
* INTERNAL API | ||
*/ | ||
@InternalApi | ||
final class VirtualizedExecutorService(prefix: String, underlying: ExecutorService) extends ExecutorService { | ||
require(prefix ne null, "Parameter prefix must not be null or empty") | ||
require(underlying ne null, "Parameter underlying must not be null") | ||
|
||
private val executor = VirtualThreadSupportReflect.newThreadPerTaskExecutor(prefix, underlying) | ||
|
||
override def shutdown(): Unit = { | ||
executor.shutdown() | ||
underlying.shutdown() | ||
} | ||
|
||
override def shutdownNow(): util.List[Runnable] = { | ||
executor.shutdownNow() | ||
underlying.shutdownNow() | ||
} | ||
|
||
override def isShutdown: Boolean = { | ||
executor.isShutdown || underlying.isShutdown | ||
} | ||
|
||
override def isTerminated: Boolean = { | ||
executor.isTerminated && underlying.isTerminated | ||
} | ||
|
||
override def awaitTermination(timeout: Long, unit: TimeUnit): Boolean = { | ||
executor.awaitTermination(timeout, unit) && underlying.awaitTermination(timeout, unit) | ||
} | ||
|
||
override def submit[T](task: Callable[T]): Future[T] = { | ||
executor.submit(task) | ||
} | ||
|
||
override def submit[T](task: Runnable, result: T): Future[T] = { | ||
executor.submit(task, result) | ||
} | ||
|
||
override def submit(task: Runnable): Future[_] = { | ||
executor.submit(task) | ||
} | ||
|
||
override def invokeAll[T](tasks: util.Collection[_ <: Callable[T]]): util.List[Future[T]] = { | ||
executor.invokeAll(tasks) | ||
} | ||
|
||
override def invokeAll[T]( | ||
tasks: util.Collection[_ <: Callable[T]], timeout: Long, unit: TimeUnit): util.List[Future[T]] = { | ||
executor.invokeAll(tasks, timeout, unit) | ||
} | ||
|
||
override def invokeAny[T](tasks: util.Collection[_ <: Callable[T]]): T = { | ||
executor.invokeAny(tasks) | ||
} | ||
|
||
override def invokeAny[T](tasks: util.Collection[_ <: Callable[T]], timeout: Long, unit: TimeUnit): T = { | ||
executor.invokeAny(tasks, timeout, unit) | ||
} | ||
|
||
override def execute(command: Runnable): Unit = { | ||
executor.execute(command) | ||
} | ||
} |