-
Notifications
You must be signed in to change notification settings - Fork 57
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
Passing parameters into the workflow? #33
Comments
Ive tried a couple of variations of the above and, while some of them are allowed by Luigi or sciluigi...none of them allow me to actually pass the parameter at the sciluigi.run_local line.... |
OK. Nevermind :) It works if I use the command line with 'luigi etc etc'. I was trying to get it to run from "if name == main" :) If I run it from the command line using ...
...it accepts the parameters fine. |
So, I reopened this instead of creating a new issue. While I am able to pass in parameters from command line, I'm still looking at addressing the issue of the workflow needing to run multiple files (not just one file only). So, the workflow concept (where the workflow method builds all the tasks first, and then runs then in sequence at the 'return' call) means looping the workflow method won't work. Since there will always be an unknown number of files passed in as a list (from 1 to n) ... is there an existing way to have the workflow run each file independently (without having to call the luigi command line 1 to 'n' times)? Thanks! |
Morning!
So, we want to run a pipeline that uses multiple files. Is there a way to pass the file list into the workflow?
Using your tutorial example,
The text was updated successfully, but these errors were encountered: