雪花无服务器任务
Snowflake Serverless Tasks
有谁知道 Snowflake Serverless Tasks 何时可以结束预览并普遍可用?
我看过几篇关于它正在与一些 Snowflake 客户进行预览的文章,但找不到更多信息。
截至 2021 年 8 月,此功能仍在 preview。
I've seen a couple of articles about it being in a preview with some Snowflake customers, but can't find anymore info further to that.
Tasks require compute resources to execute SQL code. Either of the following compute models can be chosen for individual tasks:
- Snowflake-managed
Also referred to as the serverless compute model, this option relies on compute resources managed by Snowflake. These resources are automatically resized and scaled up or down by Snowflake as required for each workload.
Snowflake-managed resources (i.e. serverless compute model)
Snowflake bills your account based on the actual compute resource usage; in contrast with customer-managed virtual warehouses, which consume credits when active, and may sit idle or be overutilized. Charges are calculated based on total usage of the resources (including cloud service usage) measured in compute-hours credit usage.
CREATE TASK也更新了:
CREATE [ OR REPLACE ] TASK [ IF NOT EXISTS ] <name>
[ WAREHOUSE = <string> ]
仓库名变成optional parameter.
有谁知道 Snowflake Serverless Tasks 何时可以结束预览并普遍可用?
我看过几篇关于它正在与一些 Snowflake 客户进行预览的文章,但找不到更多信息。
截至 2021 年 8 月,此功能仍在 preview。
I've seen a couple of articles about it being in a preview with some Snowflake customers, but can't find anymore info further to that.
Tasks require compute resources to execute SQL code. Either of the following compute models can be chosen for individual tasks:
- Snowflake-managed
Also referred to as the serverless compute model, this option relies on compute resources managed by Snowflake. These resources are automatically resized and scaled up or down by Snowflake as required for each workload.
Snowflake-managed resources (i.e. serverless compute model)
Snowflake bills your account based on the actual compute resource usage; in contrast with customer-managed virtual warehouses, which consume credits when active, and may sit idle or be overutilized. Charges are calculated based on total usage of the resources (including cloud service usage) measured in compute-hours credit usage.
CREATE TASK也更新了:
CREATE [ OR REPLACE ] TASK [ IF NOT EXISTS ] <name> [ WAREHOUSE = <string> ]
仓库名变成optional parameter.