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 2017/03/22 15:32:49 UTC

[GitHub] spark pull request #17389: [MINOR][BUILD] Fix javadoc8 break

GitHub user HyukjinKwon opened a pull request:

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

    [MINOR][BUILD] Fix javadoc8 break

    ## What changes were proposed in this pull request?
    
    Several javadoc8 breaks have been introduced. This PR proposes fix those instances so that we can build javadoc8 correctly.
    
    ```
    [error] .../spark/sql/core/target/java/org/apache/spark/sql/streaming/KeyedState.java:7: error: reference not found
    [error]  * {@link KeyValueGroupedDataset}.
    [error]           ^
    [error] .../spark/sql/core/target/java/org/apache/spark/sql/streaming/KeyedState.java:11: error: reference not found
    [error]  * Both, <code>mapGroupsWithState</code> and <code>flatMapGroupsWithState</code> in {@link KeyValueGroupedDataset}
    [error]                                                                                            ^
    [error] .../spark/sql/core/target/java/org/apache/spark/sql/streaming/KeyedState.java:52: error: reference not found
    [error]  *    {@link KeyedStateTimeout.ProcessingTimeTimeout}) or event time (i.e.
    [error]              ^
    [error] .../spark/sql/core/target/java/org/apache/spark/sql/streaming/KeyedState.java:53: error: reference not found
    [error]  *    {@link KeyedStateTimeout.EventTimeTimeout}).
    [error]              ^
    [error] .../spark/sql/core/target/java/org/apache/spark/sql/streaming/KeyedState.java:71: error: bad use of '>'
    [error]  *    > watermark due to the filtering). Guarantees provided by this timeout are as follows:
    [error]       ^
    [error] .../spark/sql/core/target/java/org/apache/spark/sql/streaming/KeyedState.java:158: error: reference not found
    [error]  *           Spark SQL types (see {@link Encoder} for more details).
    [error]                                          ^
    [error] .../spark/mllib/target/java/org/apache/spark/ml/fpm/FPGrowthParams.java:26: error: bad use of '>'
    [error]    * Number of partitions (>=1) used by parallel FP-growth. By default the param is not set, and
    [error]                            ^
    [error] .../spark/sql/core/src/main/java/org/apache/spark/api/java/function/FlatMapGroupsWithStateFunction.java:30: error: reference not found
    [error]  * {@link org.apache.spark.sql.KeyValueGroupedDataset#flatMapGroupsWithState(
    [error]           ^
    [error] .../spark/sql/core/target/java/org/apache/spark/sql/KeyValueGroupedDataset.java:211: error: reference not found
    [error]    * See {@link KeyedState} for more details.
    [error]                 ^
    [error] .../spark/sql/core/target/java/org/apache/spark/sql/KeyValueGroupedDataset.java:232: error: reference not found
    [error]    * See {@link KeyedState} for more details.
    [error]                 ^
    [error] .../spark/sql/core/target/java/org/apache/spark/sql/KeyValueGroupedDataset.java:254: error: reference not found
    [error]    * See {@link KeyedState} for more details.
    [error]                 ^
    [error] .../spark/sql/core/target/java/org/apache/spark/sql/KeyValueGroupedDataset.java:277: error: reference not found
    [error]    * See {@link KeyedState} for more details.
    [error]                 ^
    [error] .../spark/core/target/java/org/apache/spark/TaskContextImpl.java:10: error: reference not found
    [error]  * {@link TaskMetrics} &amp; {@link MetricsSystem} objects are not thread safe.
    [error]           ^
    [error] .../spark/core/target/java/org/apache/spark/TaskContextImpl.java:10: error: reference not found
    [error]  * {@link TaskMetrics} &amp; {@link MetricsSystem} objects are not thread safe.
    [error]                                     ^
    [info] 14 errors
    ```
    
    ```
    jekyll 3.3.1 | Error:  Unidoc generation failed
    ```
    
    ## How was this patch tested?
    
    Manually via `jekyll build`

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

    $ git pull https://github.com/HyukjinKwon/spark minor-javadoc8-fix

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

    https://github.com/apache/spark/pull/17389.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 #17389
    
----
commit a00dd50d960cd42ea4f041507f2c310dcd72cdbd
Author: hyukjinkwon <gu...@gmail.com>
Date:   2017-03-22T15:07:08Z

    Fix javadoc8 errors

----


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #17389: [MINOR][BUILD] Fix javadoc8 break

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

    https://github.com/apache/spark/pull/17389#discussion_r107447497
  
    --- Diff: sql/core/src/main/java/org/apache/spark/api/java/function/FlatMapGroupsWithStateFunction.java ---
    @@ -27,7 +27,7 @@
     /**
      * ::Experimental::
      * Base interface for a map function used in
    - * {@link org.apache.spark.sql.KeyValueGroupedDataset#flatMapGroupsWithState(
    + * {@code org.apache.spark.sql.KeyValueGroupedDataset.flatMapGroupsWithState(
    --- End diff --
    
    <img width="952" alt="2017-03-23 12 32 11" src="https://cloud.githubusercontent.com/assets/6477701/24206053/7aa9db3e-0f60-11e7-8eed-5603f4c5763b.png">



---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

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


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

    https://github.com/apache/spark/pull/17389
  
    **[Test build #75076 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/75076/testReport)** for PR 17389 at commit [`88ee198`](https://github.com/apache/spark/commit/88ee1982c5e2ecc2a88fa75e5a920a0c2403b43a).


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

    https://github.com/apache/spark/pull/17389
  
    **[Test build #75067 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/75067/testReport)** for PR 17389 at commit [`88ee198`](https://github.com/apache/spark/commit/88ee1982c5e2ecc2a88fa75e5a920a0c2403b43a).


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

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


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

    https://github.com/apache/spark/pull/17389
  
    Thank you for your approval @srowen.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

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


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

    https://github.com/apache/spark/pull/17389
  
    **[Test build #75067 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/75067/testReport)** for PR 17389 at commit [`88ee198`](https://github.com/apache/spark/commit/88ee1982c5e2ecc2a88fa75e5a920a0c2403b43a).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

    https://github.com/apache/spark/pull/17389
  
    **[Test build #3606 has finished](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/3606/testReport)** for PR 17389 at commit [`a00dd50`](https://github.com/apache/spark/commit/a00dd50d960cd42ea4f041507f2c310dcd72cdbd).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

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


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

    https://github.com/apache/spark/pull/17389
  
    Just to extend a bit more with the actual example, 
    
    before this PR 
    
    ```
    [error] .../spark/core/target/java/org/apache/spark/Accumulator.java:47: error: cannot find symbol
    ```
    
    after this PR
    
    ```
    [warn] .../spark/core/target/java/org/apache/spark/Accumulator.java:47: error: cannot find symbol
    ```


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

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


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

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


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

    https://github.com/apache/spark/pull/17389
  
    **[Test build #75053 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/75053/testReport)** for PR 17389 at commit [`a00dd50`](https://github.com/apache/spark/commit/a00dd50d960cd42ea4f041507f2c310dcd72cdbd).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

    https://github.com/apache/spark/pull/17389
  
    Merged to master


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

    https://github.com/apache/spark/pull/17389
  
    cc @srowen, could you take a look and see if it makes sense?


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

    https://github.com/apache/spark/pull/17389
  
    I would like to to note that my observations.
    
    When we introduce a javadoc break, it seems sbt produces other warnings as errors when generating javadoc.
    There are currently so many warnings that are printed apprently as errors within generated java codes when there are javadoc breaks.
    
    For example,
    
    with the java code , `A.java`, below:
    
    ```java
    /**
    * Hi
    */
    public class A extends B {
    }
    ```
    
    if we run `javadoc`
    
    ```
    javadoc A.java
    ```
    
    it produces **warning** because it does not find B symbol. It seems still generating the documenation fine.
    
    ```
    Loading source file A.java...
    Constructing Javadoc information...
    A.java:4: error: cannot find symbol
    public class A extends B {
                           ^
      symbol: class B
    Standard Doclet version 1.8.0_45
    Building tree for all the packages and classes...
    Generating ./A.html...
    Generating ./package-frame.html...
    Generating ./package-summary.html...
    Generating ./package-tree.html...
    Generating ./constant-values.html...
    Building index for all the packages and classes...
    Generating ./overview-tree.html...
    Generating ./index-all.html...
    Generating ./deprecated-list.html...
    Building index for all classes...
    Generating ./allclasses-frame.html...
    Generating ./allclasses-noframe.html...
    Generating ./index.html...
    Generating ./help-doc.html...
    1 warning
    ```
    
    However, if we have a javadoc break in comments as below:
    
    ```java
    /**
    * Hi
    * @see B
    */
    public class A extends B {
    }
    ```
    
    this produces an **error**.
    
    ```
    Loading source file A.java...
    Constructing Javadoc information...
    A.java:5: error: cannot find symbol
    public class A extends B {
                           ^
      symbol: class B
    Standard Doclet version 1.8.0_45
    Building tree for all the packages and classes...
    Generating ./A.html...
    A.java:3: error: reference not found
    * @see B
           ^
    Generating ./package-frame.html...
    Generating ./package-summary.html...
    Generating ./package-tree.html...
    Generating ./constant-values.html...
    Building index for all the packages and classes...
    Generating ./overview-tree.html...
    Generating ./index-all.html...
    Generating ./deprecated-list.html...
    Building index for all classes...
    Generating ./allclasses-frame.html...
    Generating ./allclasses-noframe.html...
    Generating ./index.html...
    Generating ./help-doc.html...
    1 error
    1 warning
    ```
    
    and it seems somehow `sbt unidoc` recognises errors **and also warnings** as `[error]` when there are breaks.
    
    It seems okay to just fix `[info] 14 errors` which are usually generated in `Building tree for all the packages and classes...` phase.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

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


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

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


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #17389: [MINOR][BUILD] Fix javadoc8 break

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

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


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

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


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request #17389: [MINOR][BUILD] Fix javadoc8 break

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

    https://github.com/apache/spark/pull/17389#discussion_r107447352
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/streaming/KeyedState.scala ---
    @@ -224,7 +225,7 @@ trait KeyedState[S] extends LogicalKeyedState[S] {
       /**
        * Set the timeout duration for this key as a string. For example, "1 hour", "2 days", etc.
        *
    -   * @note, ProcessingTimeTimeout must be enabled in `[map/flatmap]GroupsWithStates`.
    --- End diff --
    
    It seems `@note,` produces a warning as below:
    
    ```
    [warn] .../spark/sql/core/src/main/scala/org/apache/spark/sql/streaming/KeyedState.scala:239: Tag '@note,' is not recognised
    ```


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark issue #17389: [MINOR][BUILD] Fix javadoc8 break

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

    https://github.com/apache/spark/pull/17389
  
    **[Test build #3606 has started](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/3606/testReport)** for PR 17389 at commit [`a00dd50`](https://github.com/apache/spark/commit/a00dd50d960cd42ea4f041507f2c310dcd72cdbd).


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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