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

[GitHub] spark pull request: [SPARK-13594][SQL] remove typed operations(e.g...

GitHub user cloud-fan opened a pull request:

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

    [SPARK-13594][SQL] remove typed operations(e.g. map, flatMap) from python DataFrame

    ## What changes were proposed in this pull request?
    
    Remove `map`, `flatMap`, `mapPartitions` from python DataFrame, to prepare for Dataset API in the future.
    
    
    ## How was this patch tested?
    
    existing tests
    


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

    $ git pull https://github.com/cloud-fan/spark python-clean

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

    https://github.com/apache/spark/pull/11445.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 #11445
    
----
commit 86ec0ff21d639cb4abcfbea59db601e8ea9edada
Author: Wenchen Fan <we...@databricks.com>
Date:   2016-03-01T13:56:11Z

    remove typed operations from python DataFrame

----


---
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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-190737157
  
    **[Test build #52244 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/52244/consoleFull)** for PR 11445 at commit [`86ec0ff`](https://github.com/apache/spark/commit/86ec0ff21d639cb4abcfbea59db601e8ea9edada).
     * This patch **fails PySpark 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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-191490660
  
    Thanks - merging this in 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 pull request: [SPARK-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#discussion_r54620370
  
    --- Diff: python/pyspark/sql/dataframe.py ---
    @@ -267,44 +267,6 @@ def take(self, num):
                     self._jdf, num)
             return list(_load_from_socket(port, BatchedSerializer(PickleSerializer())))
     
    -    @ignore_unicode_prefix
    -    @since(1.3)
    -    def map(self, f):
    -        """ Returns a new :class:`RDD` by applying a the ``f`` function to each :class:`Row`.
    -
    -        This is a shorthand for ``df.rdd.map()``.
    -
    -        >>> df.map(lambda p: p.name).collect()
    -        [u'Alice', u'Bob']
    -        """
    -        return self.rdd.map(f)
    -
    -    @ignore_unicode_prefix
    -    @since(1.3)
    -    def flatMap(self, f):
    -        """ Returns a new :class:`RDD` by first applying the ``f`` function to each :class:`Row`,
    -        and then flattening the results.
    -
    -        This is a shorthand for ``df.rdd.flatMap()``.
    -
    -        >>> df.flatMap(lambda p: p.name).collect()
    -        [u'A', u'l', u'i', u'c', u'e', u'B', u'o', u'b']
    -        """
    -        return self.rdd.flatMap(f)
    -
    -    @since(1.3)
    -    def mapPartitions(self, f, preservesPartitioning=False):
    -        """Returns a new :class:`RDD` by applying the ``f`` function to each partition.
    -
    -        This is a shorthand for ``df.rdd.mapPartitions()``.
    -
    -        >>> rdd = sc.parallelize([1, 2, 3, 4], 4)
    -        >>> def f(iterator): yield 1
    -        >>> rdd.mapPartitions(f).sum()
    -        4
    -        """
    -        return self.rdd.mapPartitions(f, preservesPartitioning)
    -
    --- End diff --
    
    Should we also remove `foreach` and `foreachPartition`?


---
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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-191001993
  
    **[Test build #52273 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/52273/consoleFull)** for PR 11445 at commit [`bf4b9d5`](https://github.com/apache/spark/commit/bf4b9d5e1a18f4e21b3d35a6c95ea90c91d099c7).
     * This patch **fails PySpark 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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-191053960
  
    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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-190737197
  
    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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-191053961
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/52287/
    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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-191045804
  
    **[Test build #52287 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/52287/consoleFull)** for PR 11445 at commit [`5e711e3`](https://github.com/apache/spark/commit/5e711e36baba1a69346c5ad180f7d765f62c6bf1).


---
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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-196846200
  
    This change surprised me as a user of Pyspark on the 2.0.0-Snapshot. Thanks for documenting this well. Since I usually use the Scala API, it was not clear to me that Pyspark didn't support the Datasets API yet (i.e., `df.rdd.flatMap(...)` returns a PythonRDD as-opposed to a Dataset)



---
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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-190733338
  
    cc @rxin @yhuai


---
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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-191032657
  
    **[Test build #52285 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/52285/consoleFull)** for PR 11445 at commit [`d0a69fa`](https://github.com/apache/spark/commit/d0a69fa5cd74f57fc8539283e869e3c5de9a9f9a).
     * This patch **fails PySpark 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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-191032690
  
    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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#discussion_r54621585
  
    --- Diff: python/pyspark/sql/dataframe.py ---
    @@ -267,44 +267,6 @@ def take(self, num):
                     self._jdf, num)
             return list(_load_from_socket(port, BatchedSerializer(PickleSerializer())))
     
    -    @ignore_unicode_prefix
    -    @since(1.3)
    -    def map(self, f):
    -        """ Returns a new :class:`RDD` by applying a the ``f`` function to each :class:`Row`.
    -
    -        This is a shorthand for ``df.rdd.map()``.
    -
    -        >>> df.map(lambda p: p.name).collect()
    -        [u'Alice', u'Bob']
    -        """
    -        return self.rdd.map(f)
    -
    -    @ignore_unicode_prefix
    -    @since(1.3)
    -    def flatMap(self, f):
    -        """ Returns a new :class:`RDD` by first applying the ``f`` function to each :class:`Row`,
    -        and then flattening the results.
    -
    -        This is a shorthand for ``df.rdd.flatMap()``.
    -
    -        >>> df.flatMap(lambda p: p.name).collect()
    -        [u'A', u'l', u'i', u'c', u'e', u'B', u'o', u'b']
    -        """
    -        return self.rdd.flatMap(f)
    -
    -    @since(1.3)
    -    def mapPartitions(self, f, preservesPartitioning=False):
    -        """Returns a new :class:`RDD` by applying the ``f`` function to each partition.
    -
    -        This is a shorthand for ``df.rdd.mapPartitions()``.
    -
    -        >>> rdd = sc.parallelize([1, 2, 3, 4], 4)
    -        >>> def f(iterator): yield 1
    -        >>> rdd.mapPartitions(f).sum()
    -        4
    -        """
    -        return self.rdd.mapPartitions(f, preservesPartitioning)
    -
    --- End diff --
    
    those are fine, since they don't return anything.



---
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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-191002242
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/52273/
    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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-191002238
  
    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 #11445: [SPARK-13594][SQL] remove typed operations(e.g. map, fla...

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

    https://github.com/apache/spark/pull/11445
  
    @rxin 
    As we're not planning to implement DataSets in Python is there a plan to revert this Jira ?


---
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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-191032691
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/52285/
    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-13594][SQL] remove typed operations(e.g...

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

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


---
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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-190734065
  
    **[Test build #52244 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/52244/consoleFull)** for PR 11445 at commit [`86ec0ff`](https://github.com/apache/spark/commit/86ec0ff21d639cb4abcfbea59db601e8ea9edada).


---
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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-190737200
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/52244/
    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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-190995266
  
    **[Test build #52273 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/52273/consoleFull)** for PR 11445 at commit [`bf4b9d5`](https://github.com/apache/spark/commit/bf4b9d5e1a18f4e21b3d35a6c95ea90c91d099c7).


---
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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-191053872
  
    **[Test build #52287 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/52287/consoleFull)** for PR 11445 at commit [`5e711e3`](https://github.com/apache/spark/commit/5e711e36baba1a69346c5ad180f7d765f62c6bf1).
     * 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-13594][SQL] remove typed operations(e.g...

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

    https://github.com/apache/spark/pull/11445#issuecomment-191027648
  
    **[Test build #52285 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/52285/consoleFull)** for PR 11445 at commit [`d0a69fa`](https://github.com/apache/spark/commit/d0a69fa5cd74f57fc8539283e869e3c5de9a9f9a).


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