You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by HyukjinKwon <gi...@git.apache.org> on 2018/10/20 18:51:14 UTC

[GitHub] spark pull request #22783: [WIP][BUILD] Fix errors of log4j when pip sanity ...

GitHub user HyukjinKwon opened a pull request:

    https://github.com/apache/spark/pull/22783

    [WIP][BUILD] Fix errors of log4j when pip sanity checking

    ## What changes were proposed in this pull request?
    
    PIP sanity checking produces some errors about log4j. I have some suspension about it - will file a JIRA and fix this PR description when my doubt is clear.
    
    ```
    Run basic sanity check on pip installed version with spark-submit
    log4j:ERROR setFile(null,true) call failed.
    java.io.FileNotFoundException: target/unit-tests.log (No such file or directory)
    	at java.io.FileOutputStream.open0(Native Method)
    	at java.io.FileOutputStream.open(FileOutputStream.java:270)
    	at java.io.FileOutputStream.<init>(FileOutputStream.java:213)
    	at java.io.FileOutputStream.<init>(FileOutputStream.java:133)
    	at org.apache.log4j.FileAppender.setFile(FileAppender.java:294)
    	at org.apache.log4j.FileAppender.activateOptions(FileAppender.java:165)
    	at org.apache.log4j.config.PropertySetter.activate(PropertySetter.java:307)
    	at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:172)
    	at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:104)
    	at org.apache.log4j.PropertyConfigurator.parseAppender(PropertyConfigurator.java:842)
    	at org.apache.log4j.PropertyConfigurator.parseCategory(PropertyConfigurator.java:768)
    	at org.apache.log4j.PropertyConfigurator.configureRootCategory(PropertyConfigurator.java:648)
    	at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:514)
    	at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:580)
    	at org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConverter.java:526)
    	at org.apache.log4j.LogManager.<clinit>(LogManager.java:127)
    	at org.apache.spark.internal.Logging$class.initializeLogging(Logging.scala:120)
    	at org.apache.spark.internal.Logging$class.initializeLogIfNecessary(Logging.scala:108)
    	at org.apache.spark.deploy.SparkSubmit.initializeLogIfNecessary(SparkSubmit.scala:71)
    	at org.apache.spark.deploy.SparkSubmit.doSubmit(SparkSubmit.scala:79)
    	at org.apache.spark.deploy.SparkSubmit$$anon$2.doSubmit(SparkSubmit.scala:927)
    	at org.apache.spark.deploy.SparkSubmit$.main(SparkSubmit.scala:936)
    	at org.apache.spark.deploy.SparkSubmit.main(SparkSubmit.scala)
    Successfully ran pip sanity check
    Run basic sanity check with import based
    log4j:ERROR setFile(null,true) call failed.
    java.io.FileNotFoundException: target/unit-tests.log (No such file or directory)
    	at java.io.FileOutputStream.open0(Native Method)
    	at java.io.FileOutputStream.open(FileOutputStream.java:270)
    	at java.io.FileOutputStream.<init>(FileOutputStream.java:213)
    	at java.io.FileOutputStream.<init>(FileOutputStream.java:133)
    	at org.apache.log4j.FileAppender.setFile(FileAppender.java:294)
    	at org.apache.log4j.FileAppender.activateOptions(FileAppender.java:165)
    	at org.apache.log4j.config.PropertySetter.activate(PropertySetter.java:307)
    	at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:172)
    	at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:104)
    	at org.apache.log4j.PropertyConfigurator.parseAppender(PropertyConfigurator.java:842)
    	at org.apache.log4j.PropertyConfigurator.parseCategory(PropertyConfigurator.java:768)
    	at org.apache.log4j.PropertyConfigurator.configureRootCategory(PropertyConfigurator.java:648)
    	at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:514)
    	at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:580)
    	at org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConverter.java:526)
    	at org.apache.log4j.LogManager.<clinit>(LogManager.java:127)
    	at org.apache.spark.internal.Logging$class.initializeLogging(Logging.scala:120)
    	at org.apache.spark.internal.Logging$class.initializeLogIfNecessary(Logging.scala:108)
    	at org.apache.spark.deploy.SparkSubmit.initializeLogIfNecessary(SparkSubmit.scala:71)
    	at org.apache.spark.deploy.SparkSubmit.doSubmit(SparkSubmit.scala:79)
    	at org.apache.spark.deploy.SparkSubmit$$anon$2.doSubmit(SparkSubmit.scala:927)
    	at org.apache.spark.deploy.SparkSubmit$.main(SparkSubmit.scala:936)
    	at org.apache.spark.deploy.SparkSubmit.main(SparkSubmit.scala)
    Setting default log level to "WARN".
    To adjust logging level use sc.setLogLevel(newLevel). For SparkR, use setLogLevel(newLevel).
    
    [Stage 0:>                                                        (0 + 10) / 10]
                                                                                    
    Successfully ran pip sanity check
    Run the tests for context.py
    log4j:ERROR setFile(null,true) call failed.
    java.io.FileNotFoundException: target/unit-tests.log (No such file or directory)
    	at java.io.FileOutputStream.open0(Native Method)
    	at java.io.FileOutputStream.open(FileOutputStream.java:270)
    	at java.io.FileOutputStream.<init>(FileOutputStream.java:213)
    	at java.io.FileOutputStream.<init>(FileOutputStream.java:133)
    	at org.apache.log4j.FileAppender.setFile(FileAppender.java:294)
    	at org.apache.log4j.FileAppender.activateOptions(FileAppender.java:165)
    	at org.apache.log4j.config.PropertySetter.activate(PropertySetter.java:307)
    	at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:172)
    	at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:104)
    	at org.apache.log4j.PropertyConfigurator.parseAppender(PropertyConfigurator.java:842)
    	at org.apache.log4j.PropertyConfigurator.parseCategory(PropertyConfigurator.java:768)
    	at org.apache.log4j.PropertyConfigurator.configureRootCategory(PropertyConfigurator.java:648)
    	at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:514)
    	at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:580)
    	at org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConverter.java:526)
    	at org.apache.log4j.LogManager.<clinit>(LogManager.java:127)
    	at org.apache.spark.internal.Logging$class.initializeLogging(Logging.scala:120)
    	at org.apache.spark.internal.Logging$class.initializeLogIfNecessary(Logging.scala:108)
    	at org.apache.spark.deploy.SparkSubmit.initializeLogIfNecessary(SparkSubmit.scala:71)
    	at org.apache.spark.deploy.SparkSubmit.doSubmit(SparkSubmit.scala:79)
    	at org.apache.spark.deploy.SparkSubmit$$anon$2.doSubmit(SparkSubmit.scala:927)
    	at org.apache.spark.deploy.SparkSubmit$.main(SparkSubmit.scala:936)
    	at org.apache.spark.deploy.SparkSubmit.main(SparkSubmit.scala)
    Setting default log level to "WARN".
    To adjust logging level use sc.setLogLevel(newLevel). For SparkR, use setLogLevel(newLevel).
    log4j:ERROR setFile(null,true) call failed.
    java.io.FileNotFoundException: target/unit-tests.log (No such file or directory)
    	at java.io.FileOutputStream.open0(Native Method)
    	at java.io.FileOutputStream.open(FileOutputStream.java:270)
    	at java.io.FileOutputStream.<init>(FileOutputStream.java:213)
    	at java.io.FileOutputStream.<init>(FileOutputStream.java:133)
    	at org.apache.log4j.FileAppender.setFile(FileAppender.java:294)
    	at org.apache.log4j.FileAppender.activateOptions(FileAppender.java:165)
    	at org.apache.log4j.config.PropertySetter.activate(PropertySetter.java:307)
    	at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:172)
    	at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:104)
    	at org.apache.log4j.PropertyConfigurator.parseAppender(PropertyConfigurator.java:842)
    	at org.apache.log4j.PropertyConfigurator.parseCategory(PropertyConfigurator.java:768)
    	at org.apache.log4j.PropertyConfigurator.configureRootCategory(PropertyConfigurator.java:648)
    	at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:514)
    	at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:580)
    	at org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConverter.java:526)
    	at org.apache.log4j.LogManager.<clinit>(LogManager.java:127)
    	at org.apache.spark.internal.Logging$class.initializeLogging(Logging.scala:120)
    	at org.apache.spark.internal.Logging$class.initializeLogIfNecessary(Logging.scala:108)
    	at org.apache.spark.deploy.SparkSubmit.initializeLogIfNecessary(SparkSubmit.scala:71)
    	at org.apache.spark.deploy.SparkSubmit.doSubmit(SparkSubmit.scala:79)
    	at org.apache.spark.deploy.SparkSubmit$$anon$2.doSubmit(SparkSubmit.scala:927)
    	at org.apache.spark.deploy.SparkSubmit$.main(SparkSubmit.scala:936)
    	at org.apache.spark.deploy.SparkSubmit.main(SparkSubmit.scala)
    Setting default log level to "WARN".
    ```
    
    ## How was this patch tested?
    
    Jenkins.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/HyukjinKwon/spark investigation-pip-tests

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/22783.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #22783
    
----
commit 4d63c8a6b306f7c9dfbeaf3e51dc594da8a9e0c8
Author: hyukjinkwon <gu...@...>
Date:   2018-10-20T18:48:52Z

    Fix errors of log4j when pip sanity checking

----


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22783: [WIP][BUILD] Fix errors of log4j when pip sanity checkin...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22783
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/97664/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22783: [WIP][BUILD] Fix errors of log4j when pip sanity checkin...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22783
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22783: [WIP][BUILD] Fix errors of log4j when pip sanity ...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon closed the pull request at:

    https://github.com/apache/spark/pull/22783


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22783: [WIP][BUILD] Fix errors of log4j when pip sanity checkin...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22783
  
    **[Test build #97664 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97664/testReport)** for PR 22783 at commit [`4d63c8a`](https://github.com/apache/spark/commit/4d63c8a6b306f7c9dfbeaf3e51dc594da8a9e0c8).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22783: [WIP][BUILD] Fix errors of log4j when pip sanity checkin...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22783
  
    **[Test build #97664 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97664/testReport)** for PR 22783 at commit [`4d63c8a`](https://github.com/apache/spark/commit/4d63c8a6b306f7c9dfbeaf3e51dc594da8a9e0c8).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22783: [WIP][BUILD] Fix errors of log4j when pip sanity checkin...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22783
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22783: [WIP][BUILD] Fix errors of log4j when pip sanity checkin...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22783
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/4171/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org