[jira] [Updated] (SPARK-29546) Recover jersey-guava test dependency in docker-integration-tests

2019-10-22 Thread Dongjoon Hyun (Jira)


 [ 
https://issues.apache.org/jira/browse/SPARK-29546?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dongjoon Hyun updated SPARK-29546:
--
Description: 
While SPARK-28737 upgrades `Jersey` to 2.29, `docker-integration-tests` is 
broken because `com.spotify.docker-client` depends on `jersey-guava`. The 
latest `com.spotify.docker-client` is also still depending on that, too.

- https://mvnrepository.com/artifact/com.spotify/docker-client/5.0.2
  -> 
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client/2.19
-> 
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-common/2.19
  -> 
https://mvnrepository.com/artifact/org.glassfish.jersey.bundles.repackaged/jersey-guava/2.19

**AFTER**
{code}
build/mvn -Pdocker-integration-tests -pl :spark-docker-integration-tests_2.12 
-Dtest=none -DwildcardSuites=org.apache.spark.sql.jdbc.PostgresIntegrationSuite 
test

Tests: succeeded 6, failed 0, canceled 0, ignored 0, pending 0
All tests passed.
{code}

  was:
While SPARK-28737 upgrades `Jersey` to 2.29, `docker-integration-tests` is 
broken because `com.spotify.docker-client` depends on `jersey-guava`. The 
latest `com.spotify.docker-client` is also still depending on that, too.

- https://mvnrepository.com/artifact/com.spotify/docker-client/5.0.2
  -> 
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client/2.19
-> 
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-common/2.19
  -> 
https://mvnrepository.com/artifact/org.glassfish.jersey.bundles.repackaged/jersey-guava/2.19

**AFTER**
{code}
build/mvn -Pdocker-integration-tests -pl :spark-docker-integration-tests_2.12 
-Dtest=none -DwildcardSuites=org.apache.spark.sql.jdbc.PostgresIntegrationSuite 
test

Tests: succeeded 6, failed 0, canceled 0, ignored 0, pending 0
All tests passed.
{code}

This is only for recovering JDBC integration test in JDK8 environment. For now, 
this is broken in both JDK8/11. After fixing, this will not work in JDK11.


> Recover jersey-guava test dependency in docker-integration-tests
> 
>
> Key: SPARK-29546
> URL: https://issues.apache.org/jira/browse/SPARK-29546
> Project: Spark
>  Issue Type: Sub-task
>  Components: Tests
>Affects Versions: 3.0.0
>Reporter: Dongjoon Hyun
>Priority: Major
>
> While SPARK-28737 upgrades `Jersey` to 2.29, `docker-integration-tests` is 
> broken because `com.spotify.docker-client` depends on `jersey-guava`. The 
> latest `com.spotify.docker-client` is also still depending on that, too.
> - https://mvnrepository.com/artifact/com.spotify/docker-client/5.0.2
>   -> 
> https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client/2.19
> -> 
> https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-common/2.19
>   -> 
> https://mvnrepository.com/artifact/org.glassfish.jersey.bundles.repackaged/jersey-guava/2.19
> **AFTER**
> {code}
> build/mvn -Pdocker-integration-tests -pl :spark-docker-integration-tests_2.12 
> -Dtest=none 
> -DwildcardSuites=org.apache.spark.sql.jdbc.PostgresIntegrationSuite test
> Tests: succeeded 6, failed 0, canceled 0, ignored 0, pending 0
> All tests passed.
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-29546) Recover jersey-guava test dependency in docker-integration-tests

2019-10-22 Thread Dongjoon Hyun (Jira)


 [ 
https://issues.apache.org/jira/browse/SPARK-29546?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dongjoon Hyun updated SPARK-29546:
--
Parent: SPARK-29194
Issue Type: Sub-task  (was: Bug)

> Recover jersey-guava test dependency in docker-integration-tests
> 
>
> Key: SPARK-29546
> URL: https://issues.apache.org/jira/browse/SPARK-29546
> Project: Spark
>  Issue Type: Sub-task
>  Components: Tests
>Affects Versions: 3.0.0
>Reporter: Dongjoon Hyun
>Priority: Major
>
> While SPARK-28737 upgrades `Jersey` to 2.29, `docker-integration-tests` is 
> broken because `com.spotify.docker-client` depends on `jersey-guava`. The 
> latest `com.spotify.docker-client` is also still depending on that, too.
> - https://mvnrepository.com/artifact/com.spotify/docker-client/5.0.2
>   -> 
> https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client/2.19
> -> 
> https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-common/2.19
>   -> 
> https://mvnrepository.com/artifact/org.glassfish.jersey.bundles.repackaged/jersey-guava/2.19
> **AFTER**
> {code}
> build/mvn -Pdocker-integration-tests -pl :spark-docker-integration-tests_2.12 
> -Dtest=none 
> -DwildcardSuites=org.apache.spark.sql.jdbc.PostgresIntegrationSuite test
> Tests: succeeded 6, failed 0, canceled 0, ignored 0, pending 0
> All tests passed.
> {code}
> This is only for recovering JDBC integration test in JDK8 environment. For 
> now, this is broken in both JDK8/11. After fixing, this will not work in 
> JDK11.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-29546) Recover jersey-guava test dependency in docker-integration-tests

2019-10-22 Thread Dongjoon Hyun (Jira)


 [ 
https://issues.apache.org/jira/browse/SPARK-29546?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dongjoon Hyun updated SPARK-29546:
--
Description: 
While SPARK-28737 upgrades `Jersey` to 2.29, `docker-integration-tests` is 
broken because `com.spotify.docker-client` depends on `jersey-guava`. The 
latest `com.spotify.docker-client` is also still depending on that, too.

- https://mvnrepository.com/artifact/com.spotify/docker-client/5.0.2
  -> 
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client/2.19
-> 
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-common/2.19
  -> 
https://mvnrepository.com/artifact/org.glassfish.jersey.bundles.repackaged/jersey-guava/2.19

**AFTER**
{code}
build/mvn -Pdocker-integration-tests -pl :spark-docker-integration-tests_2.12 
-Dtest=none -DwildcardSuites=org.apache.spark.sql.jdbc.PostgresIntegrationSuite 
test

Tests: succeeded 6, failed 0, canceled 0, ignored 0, pending 0
All tests passed.
{code}

This is only for recovering JDBC integration test in JDK8 environment. For now, 
this is broken in both JDK8/11. After fixing, this will not work in JDK11.

  was:
While SPARK-28737 upgrades `Jersey` to 2.29, `docker-integration-tests` is 
broken because `com.spotify.docker-client` depends on `jersey-guava`. The 
latest `com.spotify.docker-client` is also still depending on that, too.

- https://mvnrepository.com/artifact/com.spotify/docker-client/5.0.2
  -> 
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client/2.19
-> 
https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-common/2.19
  -> 
https://mvnrepository.com/artifact/org.glassfish.jersey.bundles.repackaged/jersey-guava/2.19

**AFTER**
{code}
build/mvn -Pdocker-integration-tests -pl :spark-docker-integration-tests_2.12 
-Dtest=none -DwildcardSuites=org.apache.spark.sql.jdbc.PostgresIntegrationSuite 
test

Tests: succeeded 6, failed 0, canceled 0, ignored 0, pending 0
All tests passed.
{code}


> Recover jersey-guava test dependency in docker-integration-tests
> 
>
> Key: SPARK-29546
> URL: https://issues.apache.org/jira/browse/SPARK-29546
> Project: Spark
>  Issue Type: Bug
>  Components: Tests
>Affects Versions: 3.0.0
>Reporter: Dongjoon Hyun
>Priority: Major
>
> While SPARK-28737 upgrades `Jersey` to 2.29, `docker-integration-tests` is 
> broken because `com.spotify.docker-client` depends on `jersey-guava`. The 
> latest `com.spotify.docker-client` is also still depending on that, too.
> - https://mvnrepository.com/artifact/com.spotify/docker-client/5.0.2
>   -> 
> https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client/2.19
> -> 
> https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-common/2.19
>   -> 
> https://mvnrepository.com/artifact/org.glassfish.jersey.bundles.repackaged/jersey-guava/2.19
> **AFTER**
> {code}
> build/mvn -Pdocker-integration-tests -pl :spark-docker-integration-tests_2.12 
> -Dtest=none 
> -DwildcardSuites=org.apache.spark.sql.jdbc.PostgresIntegrationSuite test
> Tests: succeeded 6, failed 0, canceled 0, ignored 0, pending 0
> All tests passed.
> {code}
> This is only for recovering JDBC integration test in JDK8 environment. For 
> now, this is broken in both JDK8/11. After fixing, this will not work in 
> JDK11.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org