Output file matches when defining a task #3
Comments
In its current state watermill crawls the DAG (or simply tree of tasks) and searches for the first match for that pattern. So if you have something like: Task1 output --> *.txt and your pipeline is something like join(Task1, Task2, Task3) Task3 input will match Task2 output *.txt. Although it can take multiple output patterns such as defined here: output: ['1.txt', '2.txt'].map(suffix => `*.${suffix}`), Same way it can take several inputs: input: ['1.txt', '2.txt'].map(suffix => `*.${suffix}`), This is something worth mentioning here. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I noticed that when defining a task:
It seems that only one output file can be matched for a given extension?
Is there a way to match multiple files of the same extension?
The text was updated successfully, but these errors were encountered: