DolphinScheduler使用记录
约 468 字
预计阅读 1 分钟
数据表
删除历史任务数据
1
2
3
4
5
6
7
| delete from dolphin.t_ds_task_instance
where process_instance_id in (
select id from dolphin.t_ds_process_instance
where state = 7 and date(end_time) = '2022-09-20');
delete from dolphin.t_ds_process_instance
where state = 7 and date(end_time) = '2022-09-20'
|