Description Usage Arguments Value Note Examples
Removes the specified table from the in-memory cache.
1 | 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
1 2 3 4 5 6 7 8 | ## Not run:
sparkR.session()
path <- "path/to/file.json"
df <- read.json(path)
createOrReplaceTempView(df, "table")
uncacheTable("table")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.