2421994771 commented on PR #15528: URL: https://github.com/apache/dolphinscheduler/pull/15528#issuecomment-1920668399
I also encountered this problem, and it was found that when the in_queue field value was set to 1 in the wake-up task stage, the message was sent to the master failed due to network problems. Because the record with the value of IN_QUEUE was queried during the wake-up, the task would never be woken up in the subsequent period. Therefore, in the current production environment, my temporary solution was to query the records with 'status = -1 and in_queue = 1 and update_time < now() - 1 hour' in the t_ds_task_group_queue table associated with the workflow being executed through SQL, and update the in_queue value of these records to 0 so that they can be consumed again. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
