You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/02/22 11:29:49 UTC

[GitHub] [dolphinscheduler] FrankZhang996 opened a new issue #8492: [Bug] [dao] Rerun does not take effect in case of failure

FrankZhang996 opened a new issue #8492:
URL: https://github.com/apache/dolphinscheduler/issues/8492


   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
   
   
   ### What happened
   
   After the task fails to run, it will be rerun according to the configured **retryTimes**, **maxRetryTimes** and **retryInterval**, but the configuration does not take effect.
   
   ### What you expected to happen
   
   Automatic rerun configuration takes effect
   
   ### How to reproduce
   
   modify class TaskInstance:
   
   private int retryTimes;   ---> private Integer retryTimes;
   private int maxRetryTimes;  ---> private Integer maxRetryTimes;
   private int retryInterval;  ---> private Integer retryInterval;
   
   ### Anything else
   
   mybatis's  method  updateById,
   if the field is null, it will not update,
   So we can't use basic types,
   The basic type will cause the value saved in the field in the database to be 0
   
   ### Version
   
   1.3.9
   
   ### Are you willing to submit PR?
   
   - [X] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
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: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #8492: [Bug] [dao] Rerun does not take effect in case of failure

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #8492:
URL: https://github.com/apache/dolphinscheduler/issues/8492#issuecomment-1047701510


   Hi:
   * Thank you for your feedback, we have received your issue, Please wait patiently for a reply.
   * In order for us to understand your request as soon as possible, please provide detailed information、version or pictures.
   * If you haven't received a reply for a long time, you can subscribe to the developer's email,Mail subscription steps reference https://dolphinscheduler.apache.org/en-us/community/development/subscribe.html ,Then write the issue URL in the email content and send question to dev@dolphinscheduler.apache.org.


-- 
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: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler] caishunfeng commented on issue #8492: [Bug] [dao] Rerun does not take effect in case of failure

Posted by GitBox <gi...@apache.org>.
caishunfeng commented on issue #8492:
URL: https://github.com/apache/dolphinscheduler/issues/8492#issuecomment-1070726845


   >How to reproduce
   modify class TaskInstance:
   
   private int retryTimes; ---> private Integer retryTimes;
   private int maxRetryTimes; ---> private Integer maxRetryTimes;
   private int retryInterval; ---> private Integer retryInterval;
   
   Hi @FrankZhang996 what your meaning about modifying class TaskInstance?


-- 
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: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org