Github user cloud-fan commented on the issue:

    https://github.com/apache/spark/pull/13596
  
    The root cause is: even we uncache an `InMemoryRelation`, this 
`InMemoryRelation` may still get executed.
    
    The test case in this PR shows how this happens:
    1. we create a DataFrame and cache it
    2. execute this DataFrame, to make the analysis, optimization, planning to 
happen
    3. uncahce this DataFrame, however, `QueryExecution` of this df is already 
generated and won't change
    4. execute this DataFrame again, it will still run the previous physical 
plan and execute an already uncached `InMemoryRelation`.


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