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

[GitHub] spark pull request #22699: [SPARK-25711][Core] Allow history server to show ...

GitHub user gengliangwang opened a pull request:

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

    [SPARK-25711][Core] Allow history server to show usage

    ## What changes were proposed in this pull request?
    
    Currently, if we try run
    ```
    ./start-history-server.sh -h
    ```
    We will get such error
    ```
    java.io.FileNotFoundException: File -h does not exist
    ```
    
    This is not user friendly. 
    After fix, we can get following output:
    ```
    Usage: ./sbin/start-history-server.sh [options]
    
    Options:
    DIR Deprecated; set spark.history.fs.logDirectory directly
    --dir DIR (-d DIR) Deprecated; set spark.history.fs.logDirectory directly
    --properties-file FILE Path to a custom Spark properties file.
    Default is conf/spark-defaults.conf.
    
    Configuration options can be set by setting the corresponding JVM system property.
    History Server options are always available; additional options depend on the provider.
    
    History Server options:
    
    spark.history.ui.port Port where server will listen for connections
    (default 18080)
    spark.history.acls.enable Whether to enable view acls for all applications
    (default false)
    spark.history.provider Name of history provider class (defaults to
    file system-based provider)
    spark.history.retainedApplications Max number of application UIs to keep loaded in memory
    (default 50)
    FsHistoryProvider options:
    
    spark.history.fs.logDirectory Directory where app logs are stored
    (default: file:/tmp/spark-events)
    spark.history.fs.updateInterval How often to reload log data from storage
    (in seconds, default: 10)
    ```
    
    ## How was this patch tested?
    
    Manual test

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

    $ git pull https://github.com/gengliangwang/spark refactorSHSUsage

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

    https://github.com/apache/spark/pull/22699.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 #22699
    
----
commit e91f611d57ca97308a7f5aecca42255c4b69066f
Author: Gengliang Wang <ge...@...>
Date:   2018-10-11T15:27:30Z

    Allow history server to show usage

----


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    Retest this please.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    retest this please.


---

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


[GitHub] spark pull request #22699: [SPARK-25711][Core] Allow history server to show ...

Posted by gengliangwang <gi...@git.apache.org>.
Github user gengliangwang commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22699#discussion_r224508786
  
    --- Diff: core/src/main/scala/org/apache/spark/deploy/history/HistoryServerArguments.scala ---
    @@ -34,26 +34,25 @@ private[history] class HistoryServerArguments(conf: SparkConf, args: Array[Strin
     
       @tailrec
       private def parse(args: List[String]): Unit = {
    -    if (args.length == 1) {
    -      setLogDirectory(args.head)
    -    } else {
    -      args match {
    -        case ("--dir" | "-d") :: value :: tail =>
    -          setLogDirectory(value)
    -          parse(tail)
    -
    -        case ("--help" | "-h") :: tail =>
    -          printUsageAndExit(0)
    -
    -        case ("--properties-file") :: value :: tail =>
    -          propertiesFile = value
    -          parse(tail)
    -
    -        case Nil =>
    -
    -        case _ =>
    -          printUsageAndExit(1)
    -      }
    +    args match {
    +      case ("--dir" | "-d") :: value :: tail =>
    +        setLogDirectory(value)
    +        parse(tail)
    +
    +      case ("--help" | "-h") :: tail =>
    +        printUsageAndExit(0)
    +
    +      case ("--properties-file") :: value :: tail =>
    +        propertiesFile = value
    +        parse(tail)
    +
    +      case dir :: Nil =>
    --- End diff --
    
    I see. I have updated the description.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97308 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97308/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).
     * This patch **fails Spark unit 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 #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    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 #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    retest this please.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97296 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97296/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #4373 has finished](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/4373/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).
     * This patch **fails Spark unit 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 #22699: [SPARK-25711][Core] Allow history server to show usage

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

    https://github.com/apache/spark/pull/22699
  
    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/3890/
    Test PASSed.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    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 #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #4375 has finished](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/4375/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).
     * This patch **fails Spark unit 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 #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    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/3915/
    Test PASSed.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97296 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97296/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).
     * This patch **fails Spark unit 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 pull request #22699: [SPARK-25711][Core] Allow history server to show ...

Posted by gengliangwang <gi...@git.apache.org>.
Github user gengliangwang commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22699#discussion_r224506748
  
    --- Diff: core/src/main/scala/org/apache/spark/deploy/history/HistoryServerArguments.scala ---
    @@ -34,26 +34,25 @@ private[history] class HistoryServerArguments(conf: SparkConf, args: Array[Strin
     
       @tailrec
       private def parse(args: List[String]): Unit = {
    -    if (args.length == 1) {
    -      setLogDirectory(args.head)
    -    } else {
    -      args match {
    -        case ("--dir" | "-d") :: value :: tail =>
    -          setLogDirectory(value)
    -          parse(tail)
    -
    -        case ("--help" | "-h") :: tail =>
    -          printUsageAndExit(0)
    -
    -        case ("--properties-file") :: value :: tail =>
    -          propertiesFile = value
    -          parse(tail)
    -
    -        case Nil =>
    -
    -        case _ =>
    -          printUsageAndExit(1)
    -      }
    +    args match {
    +      case ("--dir" | "-d") :: value :: tail =>
    +        setLogDirectory(value)
    +        parse(tail)
    +
    +      case ("--help" | "-h") :: tail =>
    +        printUsageAndExit(0)
    +
    +      case ("--properties-file") :: value :: tail =>
    +        propertiesFile = value
    +        parse(tail)
    +
    +      case dir :: Nil =>
    --- End diff --
    
    No, it is related. For the last single argument, it is treated as the location of directory.
    See the deleted code
    ```
    if (args.length == 1) {
      setLogDirectory(args.head)
    }
    ```
    I prefer to keep the behavior.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

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


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow history server to show usage U...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97267 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97267/testReport)** for PR 22699 at commit [`e91f611`](https://github.com/apache/spark/commit/e91f611d57ca97308a7f5aecca42255c4b69066f).


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

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


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97338 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97338/testReport)** for PR 22699 at commit [`7fada77`](https://github.com/apache/spark/commit/7fada77e8a855a3977489454b861ed590eac6b85).


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    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 #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    BTW, @srowen , @jiangxb1987 , and @gengliangwang .
    
    Spark 3.0 is a good chance to remove the deprecated options. Shall we remove the following? If we don't this now, this can happen in Spark 4.0.
    ```
      DIR                         Deprecated; set spark.history.fs.logDirectory directly
      --dir DIR (-d DIR)          Deprecated; set spark.history.fs.logDirectory directly
    ```


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97278 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97278/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    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/3911/
    Test PASSed.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97295 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97295/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97308 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97308/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    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 #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

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


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97278 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97278/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).
     * This patch **fails Spark unit 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 #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97295 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97295/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).
     * This patch **fails due to an unknown error code, -9**.
     * 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 #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    retest this please.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    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 #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

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


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97333 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97333/testReport)** for PR 22699 at commit [`7fada77`](https://github.com/apache/spark/commit/7fada77e8a855a3977489454b861ed590eac6b85).


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97333 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97333/testReport)** for PR 22699 at commit [`7fada77`](https://github.com/apache/spark/commit/7fada77e8a855a3977489454b861ed590eac6b85).
     * This patch **fails due to an unknown error code, -9**.
     * 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 #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    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/3914/
    Test PASSed.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    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 #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    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/3923/
    Test PASSed.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

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


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    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 #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    Agree. Let me remove them in this PR.


---

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


[GitHub] spark pull request #22699: [SPARK-25711][Core] Allow history server to show ...

Posted by jiangxb1987 <gi...@git.apache.org>.
Github user jiangxb1987 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22699#discussion_r224508223
  
    --- Diff: sbin/start-history-server.sh ---
    @@ -28,7 +28,22 @@ if [ -z "${SPARK_HOME}" ]; then
       export SPARK_HOME="$(cd "`dirname "$0"`"/..; pwd)"
     fi
     
    +# NOTE: This exact class name is matched downstream by SparkSubmit.
    +# Any changes need to be reflected there.
    +CLASS="org.apache.spark.deploy.history.HistoryServer"
    +
    +if [[ "$@" = *--help ]] || [[ "$@" = *-h ]]; then
    +  echo "Usage: ./sbin/start-history-server.sh [options]"
    --- End diff --
    
    Well, I also saw similar code in `start-thriftserver.sh`, it uses `usage()`. Both are fine to me, just head up to make sure we've taken that into consideration.


---

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


[GitHub] spark pull request #22699: [SPARK-25711][Core] Improve start-history-server....

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

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


---

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


[GitHub] spark pull request #22699: [SPARK-25711][Core] Allow history server to show ...

Posted by jiangxb1987 <gi...@git.apache.org>.
Github user jiangxb1987 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22699#discussion_r224508691
  
    --- Diff: core/src/main/scala/org/apache/spark/deploy/history/HistoryServerArguments.scala ---
    @@ -34,26 +34,25 @@ private[history] class HistoryServerArguments(conf: SparkConf, args: Array[Strin
     
       @tailrec
       private def parse(args: List[String]): Unit = {
    -    if (args.length == 1) {
    -      setLogDirectory(args.head)
    -    } else {
    -      args match {
    -        case ("--dir" | "-d") :: value :: tail =>
    -          setLogDirectory(value)
    -          parse(tail)
    -
    -        case ("--help" | "-h") :: tail =>
    -          printUsageAndExit(0)
    -
    -        case ("--properties-file") :: value :: tail =>
    -          propertiesFile = value
    -          parse(tail)
    -
    -        case Nil =>
    -
    -        case _ =>
    -          printUsageAndExit(1)
    -      }
    +    args match {
    +      case ("--dir" | "-d") :: value :: tail =>
    +        setLogDirectory(value)
    +        parse(tail)
    +
    +      case ("--help" | "-h") :: tail =>
    +        printUsageAndExit(0)
    +
    +      case ("--properties-file") :: value :: tail =>
    +        propertiesFile = value
    +        parse(tail)
    +
    +      case dir :: Nil =>
    --- End diff --
    
    sounds good.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #4373 has started](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/4373/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow history server to show usage

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

    https://github.com/apache/spark/pull/22699
  
    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 #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    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/3939/
    Test PASSed.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    Retest this please.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    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 #22699: [SPARK-25711][Core] Allow history server to show ...

Posted by jiangxb1987 <gi...@git.apache.org>.
Github user jiangxb1987 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22699#discussion_r224504246
  
    --- Diff: core/src/main/scala/org/apache/spark/deploy/history/HistoryServerArguments.scala ---
    @@ -34,26 +34,25 @@ private[history] class HistoryServerArguments(conf: SparkConf, args: Array[Strin
     
       @tailrec
       private def parse(args: List[String]): Unit = {
    -    if (args.length == 1) {
    -      setLogDirectory(args.head)
    -    } else {
    -      args match {
    -        case ("--dir" | "-d") :: value :: tail =>
    -          setLogDirectory(value)
    -          parse(tail)
    -
    -        case ("--help" | "-h") :: tail =>
    -          printUsageAndExit(0)
    -
    -        case ("--properties-file") :: value :: tail =>
    -          propertiesFile = value
    -          parse(tail)
    -
    -        case Nil =>
    -
    -        case _ =>
    -          printUsageAndExit(1)
    -      }
    +    args match {
    +      case ("--dir" | "-d") :: value :: tail =>
    +        setLogDirectory(value)
    +        parse(tail)
    +
    +      case ("--help" | "-h") :: tail =>
    +        printUsageAndExit(0)
    +
    +      case ("--properties-file") :: value :: tail =>
    +        propertiesFile = value
    +        parse(tail)
    +
    +      case dir :: Nil =>
    --- End diff --
    
    IIUC this is not related to the PR description?


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    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 #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    Let's also update the title to include the deprecation changes.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97267 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97267/testReport)** for PR 22699 at commit [`e91f611`](https://github.com/apache/spark/commit/e91f611d57ca97308a7f5aecca42255c4b69066f).
     * 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 pull request #22699: [SPARK-25711][Core] Allow history server to show ...

Posted by gengliangwang <gi...@git.apache.org>.
Github user gengliangwang commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22699#discussion_r224506025
  
    --- Diff: sbin/start-history-server.sh ---
    @@ -28,7 +28,22 @@ if [ -z "${SPARK_HOME}" ]; then
       export SPARK_HOME="$(cd "`dirname "$0"`"/..; pwd)"
     fi
     
    +# NOTE: This exact class name is matched downstream by SparkSubmit.
    +# Any changes need to be reflected there.
    +CLASS="org.apache.spark.deploy.history.HistoryServer"
    +
    +if [[ "$@" = *--help ]] || [[ "$@" = *-h ]]; then
    +  echo "Usage: ./sbin/start-history-server.sh [options]"
    --- End diff --
    
    Well this is short, and I am following what `start-master.sh` and `start-slave.sh` did.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark pull request #22699: [SPARK-25711][Core] Allow history server to show ...

Posted by jiangxb1987 <gi...@git.apache.org>.
Github user jiangxb1987 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22699#discussion_r224507524
  
    --- Diff: core/src/main/scala/org/apache/spark/deploy/history/HistoryServerArguments.scala ---
    @@ -34,26 +34,25 @@ private[history] class HistoryServerArguments(conf: SparkConf, args: Array[Strin
     
       @tailrec
       private def parse(args: List[String]): Unit = {
    -    if (args.length == 1) {
    -      setLogDirectory(args.head)
    -    } else {
    -      args match {
    -        case ("--dir" | "-d") :: value :: tail =>
    -          setLogDirectory(value)
    -          parse(tail)
    -
    -        case ("--help" | "-h") :: tail =>
    -          printUsageAndExit(0)
    -
    -        case ("--properties-file") :: value :: tail =>
    -          propertiesFile = value
    -          parse(tail)
    -
    -        case Nil =>
    -
    -        case _ =>
    -          printUsageAndExit(1)
    -      }
    +    args match {
    +      case ("--dir" | "-d") :: value :: tail =>
    +        setLogDirectory(value)
    +        parse(tail)
    +
    +      case ("--help" | "-h") :: tail =>
    +        printUsageAndExit(0)
    +
    +      case ("--properties-file") :: value :: tail =>
    +        propertiesFile = value
    +        parse(tail)
    +
    +      case dir :: Nil =>
    --- End diff --
    
    I'm not against the change, but we shall mention it in the PR desc.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    Merged to master. Thank you,  @gengliangwang , @srowen , @jiangxb1987 .


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    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/3942/
    Test PASSed.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

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


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97338 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97338/testReport)** for PR 22699 at commit [`7fada77`](https://github.com/apache/spark/commit/7fada77e8a855a3977489454b861ed590eac6b85).
     * 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 #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

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


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/97267/
    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 #22699: [SPARK-25711][Core] Allow history server to show ...

Posted by jiangxb1987 <gi...@git.apache.org>.
Github user jiangxb1987 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22699#discussion_r224504103
  
    --- Diff: sbin/start-history-server.sh ---
    @@ -28,7 +28,22 @@ if [ -z "${SPARK_HOME}" ]; then
       export SPARK_HOME="$(cd "`dirname "$0"`"/..; pwd)"
     fi
     
    +# NOTE: This exact class name is matched downstream by SparkSubmit.
    +# Any changes need to be reflected there.
    +CLASS="org.apache.spark.deploy.history.HistoryServer"
    +
    +if [[ "$@" = *--help ]] || [[ "$@" = *-h ]]; then
    +  echo "Usage: ./sbin/start-history-server.sh [options]"
    --- End diff --
    
    nit: why not have a separated `usage()` function?


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    Agree that's a good idea


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    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/3898/
    Test PASSed.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97292 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97292/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Allow start-history-server.sh to sho...

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

    https://github.com/apache/spark/pull/22699
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #4375 has started](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/4375/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).


---

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


[GitHub] spark issue #22699: [SPARK-25711][Core] Improve start-history-server.sh: sho...

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

    https://github.com/apache/spark/pull/22699
  
    **[Test build #97292 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/97292/testReport)** for PR 22699 at commit [`5e05c60`](https://github.com/apache/spark/commit/5e05c604fdc9913a1424a569deb16ec3301bd4e4).
     * This patch **fails Spark unit 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