DataFrame.Unpersist(Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Mark the Dataset as non-persistent, and remove all blocks for it from memory and disk.
public Microsoft.Spark.Sql.DataFrame Unpersist (bool blocking = false);
member this.Unpersist : bool -> Microsoft.Spark.Sql.DataFrame
Public Function Unpersist (Optional blocking As Boolean = false) As DataFrame
Parameters
- blocking
- Boolean
Returns
Remarks
This will not un-persist any cached data that is built upon this DataFrame
.