uncacheTable {SparkR} | R Documentation |
Removes the specified table from the in-memory cache.
uncacheTable(tableName)
tableName |
the qualified or unqualified name that designates a table. If no database identifier is provided, it refers to a table in the current database. |
SparkDataFrame
uncacheTable since 1.4.0
## Not run:
##D sparkR.session()
##D path <- "path/to/file.json"
##D df <- read.json(path)
##D createOrReplaceTempView(df, "table")
##D uncacheTable("table")
## End(Not run)