未安排带有 CRON 的雪花任务
Snowflake task with CRON not scheduled
我创建了一个如下所示的 Snowflake 任务,
CREATE or replace TASK staging.task_name
WAREHOUSE = 'staging_warehouse'
SCHEDULE = 'USING CRON 0 1 * * * UTC'
AS
delete from staging....
但我看不到任务历史记录中计划或执行的任务
select *
from table(information_schema.task_history(
scheduled_time_range_start=>dateadd('hour',-10,current_timestamp()),
result_limit => 10,
task_name=>'task_name'));
我通常 运行 任务基于分钟的时间表,这是第一次使用 cron 时间表,我可能在这里遗漏了什么?
您可以先启用任务然后再运行查询吗?
alter task staging.task_name resume;
我创建了一个如下所示的 Snowflake 任务,
CREATE or replace TASK staging.task_name
WAREHOUSE = 'staging_warehouse'
SCHEDULE = 'USING CRON 0 1 * * * UTC'
AS
delete from staging....
但我看不到任务历史记录中计划或执行的任务
select *
from table(information_schema.task_history(
scheduled_time_range_start=>dateadd('hour',-10,current_timestamp()),
result_limit => 10,
task_name=>'task_name'));
我通常 运行 任务基于分钟的时间表,这是第一次使用 cron 时间表,我可能在这里遗漏了什么?
您可以先启用任务然后再运行查询吗?
alter task staging.task_name resume;