Skip to content

Commit

Permalink
assign event loop to tasks and run methods from a task in the same ev…
Browse files Browse the repository at this point in the history
…ent loop
  • Loading branch information
shangm2 committed Dec 20, 2024
1 parent 4f159c0 commit 9e5e4a7
Show file tree
Hide file tree
Showing 4 changed files with 315 additions and 309 deletions.
22 changes: 18 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,12 @@
<version>4.1.107.Final</version>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>4.1.107.Final</version>
</dependency>

<dependency>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-testing-docker</artifactId>
Expand Down Expand Up @@ -2607,7 +2613,9 @@
<executions>
<execution>
<id>unlink-out-of-tree-build-directory</id>
<goals><goal>exec</goal></goals>
<goals>
<goal>exec</goal>
</goals>
<phase>pre-clean</phase>
<configuration>
<executable>rm</executable>
Expand All @@ -2619,7 +2627,9 @@
</execution>
<execution>
<id>remove-out-of-tree-build-directory</id>
<goals><goal>exec</goal></goals>
<goals>
<goal>exec</goal>
</goals>
<phase>pre-clean</phase>
<configuration>
<executable>rm</executable>
Expand All @@ -2631,7 +2641,9 @@
</execution>
<execution>
<id>create-out-of-tree-build-directory</id>
<goals><goal>exec</goal></goals>
<goals>
<goal>exec</goal>
</goals>
<phase>validate</phase>
<configuration>
<executable>mkdir</executable>
Expand All @@ -2643,7 +2655,9 @@
</execution>
<execution>
<id>link-out-of-tree-build-directory</id>
<goals><goal>exec</goal></goals>
<goals>
<goal>exec</goal>
</goals>
<phase>validate</phase>
<configuration>
<executable>ln</executable>
Expand Down
5 changes: 5 additions & 0 deletions presto-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,11 @@
<artifactId>ratis-common</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
Loading

0 comments on commit 9e5e4a7

Please sign in to comment.