CLUSTER BY
子句 (TABLE)
適用於:僅限 Databricks SQL Databricks Runtime 13.3 LTS 和更新版本 Delta Lake
定義 Delta Lake table的液體、多維度群集。
您可以在下列情況下使用這個子句:
- 使用 CREATE TABLE 建立 table
- 使用 table 改為 ALTER TABLE,以變更叢集 columns。 若要使用已變更的叢集 columns來叢集資料列,您必須執行 OPTIMIZE。 請注意,先前叢集 columns 所叢集的數據列不會受到影響。
更新的數據列不會自動重新叢集 get。 執行 OPTIMIZE 以重新叢集更新的數據列。。
如需有關液體群集的詳細資訊,請參閱為 Delta 使用的液體群集 tables
語法
CLUSTER BY { ( column_name [, ...] ] ) |
NONE }
Parameters
-
指定 table 的 columns 來群集數據。 column 順序並不重要。 若要受益於更改叢集配置,您應該執行 OPTIMIZE。
NONE
關閉 table 之叢集功能以便進行變更。 新插入或更新的數據不會由 OPTIMIZE叢集。 若要在建立 table時不使用叢集,請省略
CLUSTER BY
子句。
範例
您可以在 使用液體分群於 Delta tables中找到更多範例。
-- Create a table with a clustering column
> CREATE TABLE t(a int, b string) CLUSTER BY (a);
-- The clustering of an existing Delta table to add a second dimension
> ALTER TABLE t CLUSTER BY (a, b);
-- Recluster the table
> OPTIMIZE t;
-- Remove the clustering
> ALTER TABLE t CLUSTER BY NONE;