共用方式為


REFRESH FUNCTION

適用於:勾選為「是」 Databricks Runtime

使 Apache Spark 的快取中指定函式的快取函式項目無效,其中包括類別名稱和資源位置。 失效的快取會立即被填入資料。 請注意, REFRESH FUNCTION 僅適用於永久函式。 重新整理原生函式或暫存函式會導致例外狀況。

語法

REFRESH FUNCTION function_name

如需磁碟快取與 Apache Spark 快取之間的差異,請參閱 磁碟快取與 Spark 快取。

參數

  • function_name

    函式名稱。 未限定名稱時,會使用目前的架構。

範例

-- The cached entry of the function is refreshed
-- The function is resolved from the current schema as the function name is unqualified.
> REFRESH FUNCTION func1;

-- The cached entry of the function is refreshed
-- The function is resolved from tempDB schema as the function name is qualified.
> REFRESH FUNCTION sc1.func1;