GitHub user liancheng opened a pull request:

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

    [SPARK-3938][SQL] Names in-memory columnar RDD with corresponding table name

    This PR enables the Web UI storage tab to show the in-memory table name 
instead of the mysterious query plan string as the name of the in-memory 
columnar RDD.
    
    Note that after #2501, a single columnar RDD can be shared with multiple 
in-memory tables, as long as their query results are the same. In this case, 
only the first cached table name is shown. For example:
    
    ```sql
    CACHE TABLE first AS SELECT * FROM src;
    CACHE TABLE second AS SELECT * FROM src;
    ```
    
    The Web UI only shows "In-memory table first".

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

    $ git pull https://github.com/liancheng/spark columnar-rdd-name

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

    https://github.com/apache/spark/pull/3383.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 #3383
    
----
commit 12ddfa6eea5b0b0b7ebbb8fffd802d87e6727493
Author: Cheng Lian <l...@databricks.com>
Date:   2014-11-20T10:35:57Z

    Names in-memory columnar RDD with corresponding table name

----


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

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

Reply via email to