-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DSIP-77][task-api] Add cycle dependency type #16706
Comments
What does the UI look like when lastNdate is selected? |
Now I want to implement some fixed types first because I can't write the front-end interface. I can organize the documents for the newly added fixed scheduling types and submit them to the community |
I think this proposal is very good. I'm +1 on this.
Since this kind of modification is not very huge. Only when the front-end and back-end as well as the documents and tests are complete will the merger be allowed. |
+1 |
May I ask if there is any documentation for compiling backend code and frontend code? I want to try debugging, I only submitted backend code before |
You can take a look at https://dolphinscheduler.apache.org/zh-cn/docs/dev/contribute/development-environment-setup |
thx , bro |
Search before asking
Motivation
DolphinScheduler currently lacks dependency types scheduled at the same cycle level, such as the current
thisMonth
type, which mainly detects instances that have been successfully executed every day of the current month before they can continue to execute. In most data generation, two tasks scheduled at the same month level are also required, and only instances that have been successfully executed once in the current month need to be detected. However, other scheduling dependency types also have similar issues, such aslastMonth
,lastWeek
,last7Days
,last3Days
, etc. They are all task dependency types that detect successful instances within a certain time range. We need a task dependency type that only detects one successful instance within the execution cycle.Design Detail
Add cycle dependency type , such as
last1Date
last2Date
...lastNdate
lastNmonthDate
lastNWeek
,etc.only detects one successful instance within the execution cycle.
Compatibility, Deprecation, and Migration Plan
No response
Test Plan
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: