spark-instrumented-optimizer/docs/sql-ref-syntax-aux-cache-cache-table.md
Huaxin Gao 585954dbed [SPARK-28790][DOC][SQL] Document CACHE TABLE statement in SQL Reference
### What changes were proposed in this pull request?
Document CACHE TABLE statement in SQL Reference

### Why are the changes needed?
To complete SQL Reference

### Does this PR introduce any user-facing change?
Yes.

Here is the screen shot:

![image](https://user-images.githubusercontent.com/13592258/64072307-26f45c80-cc41-11e9-8ab3-dc56fe8ff45f.png)

![image](https://user-images.githubusercontent.com/13592258/64072309-2cea3d80-cc41-11e9-9a4d-8cb9eb63569f.png)

### How was this patch tested?
Tested using jykyll build --serve

Closes #25532 from huaxingao/spark-28790.

Authored-by: Huaxin Gao <huaxing@us.ibm.com>
Signed-off-by: Xiao Li <gatorsmile@gmail.com>
2019-09-01 17:08:09 -07:00

84 lines
3 KiB
Markdown

---
layout: global
title: CACHE TABLE
displayTitle: CACHE TABLE
license: |
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
---
### Description
`CACHE TABLE` statement caches contents of a table or output of a query with the given storage level. This reduces scanning of the original files in future queries.
### Syntax
{% highlight sql %}
CACHE [ LAZY ] TABLE table_name
[ OPTIONS ( 'storageLevel' [ = ] value ) ] [ [ AS ] query ]
{% endhighlight %}
### Parameters
<dl>
<dt><code><em>LAZY</em></code></dt>
<dd>Only cache the table when it is first used, instead of immediately.</dd>
</dl>
<dl>
<dt><code><em>table_name</em></code></dt>
<dd>The name of the table to be cached.</dd>
</dl>
<dl>
<dt><code><em>OPTIONS ( 'storageLevel' [ = ] value )</em></code></dt>
<dd>
<code>OPTIONS</code> clause with <code>storageLevel</code> key and value pair. A Warning is issued when a key other than <code>storageLevel</code> is used. The valid options for <code>storageLevel</code> are:
<ul>
<li><code>NONE</code></li>
<li><code>DISK_ONLY</code></li>
<li><code>DISK_ONLY_2</code></li>
<li><code>MEMORY_ONLY</code></li>
<li><code>MEMORY_ONLY_2</code></li>
<li><code>MEMORY_ONLY_SER</code></li>
<li><code>MEMORY_ONLY_SER_2</code></li>
<li><code>MEMORY_AND_DISK</code></li>
<li><code>MEMORY_AND_DISK_2</code></li>
<li><code>MEMORY_AND_DISK_SER</code></li>
<li><code>MEMORY_AND_DISK_SER_2</code></li>
<li><code>OFF_HEAP</code></li>
</ul>
An Exception is thrown when an invalid value is set for <code>storageLevel</code>. If <code>storageLevel</code> is not explicitly set using <code>OPTIONS</code> clause, the default <code>storageLevel</code> is set to <code>MEMORY_AND_DISK</code>.
</dd>
</dl>
<dl>
<dt><code><em>query</em></code></dt>
<dd>A query that produces the rows to be cached. It can be in one of following formats:
<ul>
<li>a <code>SELECT</code> statement</li>
<li>a <code>TABLE</code> statement</li>
<li>a <code>FROM</code> statement</li>
</ul>
</dd>
</dl>
### Examples
{% highlight sql %}
CACHE TABLE testCache OPTIONS ('storageLevel' 'DISK_ONLY') SELECT * FROM testData;
{% endhighlight %}
### Related Statements
* [CLEAR CACHE](sql-ref-syntax-aux-cache-clear-cache.html)
* [UNCACHE TABLE](sql-ref-syntax-aux-cache-uncache-table.html)