Github user scwf commented on the pull request:

    https://github.com/apache/spark/pull/2685#issuecomment-61056033
  
    locally test result
    1 
    ```
    diff --git a/core/pom.xml b/core/pom.xml
    index 5cd21e1..c87f661 100644
    --- a/core/pom.xml
    +++ b/core/pom.xml
    @@ -131,6 +131,11 @@
           <artifactId>chill-java</artifactId>
         </dependency>
         <dependency>
    +      <groupId>com.esotericsoftware.kryo</groupId>
    +      <artifactId>kryo</artifactId>
    +      <version>2.22</version>
    +    </dependency>
    +    <dependency>
           <groupId>org.roaringbitmap</groupId>
           <artifactId>RoaringBitmap</artifactId>
         </dependency>
    ```
    compile error.
    
    2 
    ```
    diff --git a/core/pom.xml b/core/pom.xml
    index 5cd21e1..50271ed 100644
    --- a/core/pom.xml
    +++ b/core/pom.xml
    @@ -125,10 +125,32 @@
         <dependency>
           <groupId>com.twitter</groupId>
           <artifactId>chill_${scala.binary.version}</artifactId>
    +      <exclusions>
    +        <exclusion>
    +          <groupId>com.esotericsoftware.kryo</groupId>
    +          <artifactId>kryo</artifactId>
    +        </exclusion>
    +      </exclusions>
         </dependency>
         <dependency>
           <groupId>com.twitter</groupId>
           <artifactId>chill-java</artifactId>
    +      <exclusions>
    +        <exclusion>
    +          <groupId>com.esotericsoftware.kryo</groupId>
    +          <artifactId>kryo</artifactId>
    +        </exclusion>
    +      </exclusions>
    +    </dependency>
    +    <dependency>
    +      <groupId>com.esotericsoftware.kryo</groupId>
    +      <artifactId>kryo</artifactId>
    +      <version>2.22</version>
    +    </dependency>
    +    <dependency>
    +      <groupId>org.objenesis</groupId>
    +      <artifactId>objenesis</artifactId>
    +      <version>1.2</version>
    ```
    hashshuffle test failed as before.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to