-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
There should be a way to specify jobs which could affect other jobs #99
Comments
Is it a recursive dependency? In requires(), you can just step backwards and find the last invocation of the same task and depend on it |
@jcoveney Isn't the basic issue that you have different task instances with the same output target? Another way of solving it is to remove the parameters on the conflicting task... |
I'm closing this issue.
Every open issue adds some clutter, and we try to make the issues fewer and make it easier for new collaborators to find. Currently we try to close any issue that meets the first checkbox + one other. Feel free to reopen this issue at any point if you have the intent to continue to work this. :) |
big change because: Luigi relies on configuration in code. Hard to analyze workaround: There's the deps tools now. |
Imagine you have a job where if it has run on date A, then it doesn't need to be run for any previous date. If you schedule a bunch of these, however, they will all be scheduled and run. You can manually short circuit the run with a check, but it would be nice to have a cleaner way to deal with these sort of situations.
The text was updated successfully, but these errors were encountered: