[
https://issues.apache.org/jira/browse/SPARK-41063?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17880945#comment-17880945
]
halim kim edited comment on SPARK-41063 at 9/12/24 1:05 AM:
------------------------------------------------------------
This issue is related to the zinc incremental compiler bug.
spark 3.4.x uses scala-maven-plugin 4.8.0 where zinc 1.8.0 has been integrated.
zinc had a bug that loops infinitely with transitive invalidation. zinc 1.8.1
and upper version has fixed the bug.
please refer
[https://github.com/sbt/zinc/commit/3866ac44c80ccab40624077236e51ef07c0d0069]
when you face the same issue with building hive-thriftserver module, add zinc
1.8.1 dependency for scala-maven-plugin
{code:java}
...
<dependencies>
<dependency>
<groupId>org.scala-sbt</groupId>
<artifactId>zinc_2.13</artifactId>
<version>1.8.1</version>
</dependency>
</dependencies>
... {code}
was (Author: JIRAUSER292974):
This issue is related to the zinc incremental compiler bug.
spark 3.4.x uses scala-maven-plugin 4.8.0 where zinc 1.8.0 has been integrated.
zinc had a bug that loops infinitely with transitive invalidation. zinc 1.8.1
and upper version has fixed the bug.
please refer
[https://github.com/sbt/zinc/commit/3866ac44c80ccab40624077236e51ef07c0d0069]
when you face the same issue with building hive-thriftserver module, add zinc
1.8.1 dependency for scala-maven-plugin
```xml
...
<dependencies>
<dependency>
<groupId>org.scala-sbt</groupId>
<artifactId>zinc_2.13</artifactId>
<version>1.8.1</version>
</dependency>
</dependencies>
...
```
> `hive-thriftserver` module compilation deadlock
> -----------------------------------------------
>
> Key: SPARK-41063
> URL: https://issues.apache.org/jira/browse/SPARK-41063
> Project: Spark
> Issue Type: Improvement
> Components: Build
> Affects Versions: 3.4.0
> Reporter: Yang Jie
> Priority: Major
>
> [https://pipelines.actions.githubusercontent.com/serviceHosts/03398d36-4378-4d47-a936-fba0a5e8ccb9/_apis/pipelines/1/runs/194220/signedlogcontent/20?urlExpires=2022-11-09T03%3A31%3A51.5657953Z&urlSigningMethod=HMACV1&urlSignature=Jnn4uML8U79K6MF%2F%2BRUrrUbaOqxsqMA0DL0%2BQtrlBpM%3D]
>
> I have seen it when compiling with Maven locally, but I haven't investigated
>
>
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]