You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by rxin <gi...@git.apache.org> on 2016/05/03 01:55:11 UTC

[GitHub] spark pull request: [SPARK-15079] Support average/count/sum in Lon...

GitHub user rxin opened a pull request:

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

    [SPARK-15079] Support average/count/sum in Long/DoubleAccumulator

    ## What changes were proposed in this pull request?
    This patch removes AverageAccumulator and adds the ability to compute average to LongAccumulator and DoubleAccumulator. The patch also improves documentation for the two accumulators.
    
    ## How was this patch tested?
    Added unit tests for this.

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

    $ git pull https://github.com/rxin/spark SPARK-15079

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

    https://github.com/apache/spark/pull/12858.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 #12858
    
----
commit 1239288625bd210a5cd6cdab84249e370bc6b82f
Author: Reynold Xin <rx...@databricks.com>
Date:   2016-05-03T01:53:49Z

    [SPARK-15079] Support average/count/sum in LongAccumulator/DoubleAccumulator

----


---
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: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-216431027
  
    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: [SPARK-15079] Support average/count/sum in Lon...

Posted by rxin <gi...@git.apache.org>.
Github user rxin commented on the pull request:

    https://github.com/apache/spark/pull/12858#issuecomment-216431111
  
    Merging in master / branch-2.0.



---
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: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-216416389
  
    **[Test build #57583 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/57583/consoleFull)** for PR 12858 at commit [`b41110e`](https://github.com/apache/spark/commit/b41110eb0c643a08ed24533c87d3aeebd5c24cf2).


---
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: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-216429644
  
    **[Test build #57583 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/57583/consoleFull)** for PR 12858 at commit [`b41110e`](https://github.com/apache/spark/commit/b41110eb0c643a08ed24533c87d3aeebd5c24cf2).
     * 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 pull request: [SPARK-15079] Support average/count/sum in Lon...

Posted by cloud-fan <gi...@git.apache.org>.
Github user cloud-fan commented on the pull request:

    https://github.com/apache/spark/pull/12858#issuecomment-220208358
  
    Conceptually long accumulator is enough for integral accumulation, that's why we don't implement `IntAccumulator`. However, `LongAccumulator` can't be used as `Accumulator[Int]`, the type system doesn't allow it.
    
    Some tests in `AccumulatorV2Suite` uses int (eg. 0 not 0L) because compiler can cast it to long for us. (that why we think int accumulator is not that useful, as int can always be casted to long)


---
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: [SPARK-15079] Support average/count/sum in Lon...

Posted by cloud-fan <gi...@git.apache.org>.
Github user cloud-fan commented on the pull request:

    https://github.com/apache/spark/pull/12858#issuecomment-216426148
  
    LGTM


---
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: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-216431028
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/57584/
    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: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-220208963
  
    @cloud-fan Ah, thank you so much for a detailed explanation. I will look into this for myself.


---
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: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-216429716
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/57583/
    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 pull request: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-216428833
  
    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 pull request: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-216428768
  
    **[Test build #57582 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/57582/consoleFull)** for PR 12858 at commit [`1239288`](https://github.com/apache/spark/commit/1239288625bd210a5cd6cdab84249e370bc6b82f).
     * 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 pull request: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-216415235
  
    **[Test build #57582 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/57582/consoleFull)** for PR 12858 at commit [`1239288`](https://github.com/apache/spark/commit/1239288625bd210a5cd6cdab84249e370bc6b82f).


---
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: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#discussion_r61834639
  
    --- Diff: core/src/main/scala/org/apache/spark/AccumulatorV2.scala ---
    @@ -257,23 +257,66 @@ private[spark] object AccumulatorContext {
     }
     
     
    +/**
    + * An [[AccumulatorV2 accumulator]] for computing sum, count, and averages for 64-bit integers.
    + *
    + * @since 2.0.0
    + */
     class LongAccumulator extends AccumulatorV2[jl.Long, jl.Long] {
       private[this] var _sum = 0L
    +  private[this] var _count = 0L
     
    -  override def isZero: Boolean = _sum == 0
    +  /**
    --- End diff --
    
    wrong doc for `isZero`


---
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: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#discussion_r61835718
  
    --- Diff: core/src/main/scala/org/apache/spark/AccumulatorV2.scala ---
    @@ -257,23 +257,66 @@ private[spark] object AccumulatorContext {
     }
     
     
    +/**
    + * An [[AccumulatorV2 accumulator]] for computing sum, count, and averages for 64-bit integers.
    + *
    + * @since 2.0.0
    + */
     class LongAccumulator extends AccumulatorV2[jl.Long, jl.Long] {
       private[this] var _sum = 0L
    +  private[this] var _count = 0L
     
    -  override def isZero: Boolean = _sum == 0
    +  /**
    +   * Adds v to the accumulator, i.e. increment sum by v and count by 1.
    +   * @since 2.0.0
    +   */
    +  override def isZero: Boolean = _count == 0L
     
       override def copyAndReset(): LongAccumulator = new LongAccumulator
     
    -  override def add(v: jl.Long): Unit = _sum += v
    +  /**
    +   * Adds v to the accumulator, i.e. increment sum by v and count by 1.
    +   * @since 2.0.0
    +   */
    +  override def add(v: jl.Long): Unit = {
    +    _sum += v
    +    _count += 1
    +  }
    +
    +  /**
    +   * Adds v to the accumulator, i.e. increment sum by v and count by 1.
    +   * @since 2.0.0
    +   */
    +  def add(v: Long): Unit = {
    +    _sum += v
    +    _count += 1
    +  }
     
    -  def add(v: Long): Unit = _sum += v
    +  /**
    +   * Returns the number of elements added to the accumulator.
    +   * @since 2.0.0
    +   */
    +  def count: Long = _count
     
    +  /**
    +   * Returns the sum of elements added to the accumulator.
    +   * @since 2.0.0
    +   */
       def sum: Long = _sum
     
    +  /**
    +   * Returns the average of elements added to the accumulator.
    +   * @since 2.0.0
    +   */
    +  def avg: Double = _sum.toDouble / _count
    --- End diff --
    
    it just becomes Infinity or NaN.



---
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: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-220207574
  
    Hi @cloud-fan , Could I please ask a question? It seems old accumulator is deprecated but new accumulator should be used everywhere. I am trying to change some tests and codes to use this but I am a bit confused if I should use `LongAccumulator` for `Accumulator[Int]`.
    
    I thought I should leave `Accumulator[Int]` as it is but it seems some tests in `AccumulatorV2Suite` uses int (eg. `0` not `0L`). 
    
    So.. Should I use `LongAccumulator` for `Accumulator[Int]` or just leave them? It seems there is no implementation of `IntAccumulator`. This is intendedly not implemented? 


---
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: [SPARK-15079] Support average/count/sum in Lon...

Posted by rxin <gi...@git.apache.org>.
Github user rxin commented on the pull request:

    https://github.com/apache/spark/pull/12858#issuecomment-216415085
  
    cc @cloud-fan 


---
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: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-216422891
  
    **[Test build #57584 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/57584/consoleFull)** for PR 12858 at commit [`8c92ab6`](https://github.com/apache/spark/commit/8c92ab6d10d86abde2c0564f092d7cab189a07ad).


---
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: [SPARK-15079] Support average/count/sum in Lon...

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

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


---
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: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-216430972
  
    **[Test build #57584 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/57584/consoleFull)** for PR 12858 at commit [`8c92ab6`](https://github.com/apache/spark/commit/8c92ab6d10d86abde2c0564f092d7cab189a07ad).
     * 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 pull request: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-216428834
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/57582/
    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 pull request: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#issuecomment-216429712
  
    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 pull request: [SPARK-15079] Support average/count/sum in Lon...

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

    https://github.com/apache/spark/pull/12858#discussion_r61834681
  
    --- Diff: core/src/main/scala/org/apache/spark/AccumulatorV2.scala ---
    @@ -257,23 +257,66 @@ private[spark] object AccumulatorContext {
     }
     
     
    +/**
    + * An [[AccumulatorV2 accumulator]] for computing sum, count, and averages for 64-bit integers.
    + *
    + * @since 2.0.0
    + */
     class LongAccumulator extends AccumulatorV2[jl.Long, jl.Long] {
       private[this] var _sum = 0L
    +  private[this] var _count = 0L
     
    -  override def isZero: Boolean = _sum == 0
    +  /**
    +   * Adds v to the accumulator, i.e. increment sum by v and count by 1.
    +   * @since 2.0.0
    +   */
    +  override def isZero: Boolean = _count == 0L
     
       override def copyAndReset(): LongAccumulator = new LongAccumulator
     
    -  override def add(v: jl.Long): Unit = _sum += v
    +  /**
    +   * Adds v to the accumulator, i.e. increment sum by v and count by 1.
    +   * @since 2.0.0
    +   */
    +  override def add(v: jl.Long): Unit = {
    +    _sum += v
    +    _count += 1
    +  }
    +
    +  /**
    +   * Adds v to the accumulator, i.e. increment sum by v and count by 1.
    +   * @since 2.0.0
    +   */
    +  def add(v: Long): Unit = {
    +    _sum += v
    +    _count += 1
    +  }
     
    -  def add(v: Long): Unit = _sum += v
    +  /**
    +   * Returns the number of elements added to the accumulator.
    +   * @since 2.0.0
    +   */
    +  def count: Long = _count
     
    +  /**
    +   * Returns the sum of elements added to the accumulator.
    +   * @since 2.0.0
    +   */
       def sum: Long = _sum
     
    +  /**
    +   * Returns the average of elements added to the accumulator.
    +   * @since 2.0.0
    +   */
    +  def avg: Double = _sum.toDouble / _count
    --- End diff --
    
    should we handle `_count == 0` here?


---
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