I want to automate my knime workflows. I am using the KNIME Analytics platform without any server license.
I tried with the cmd command editor, and I found the code below-----
It is now working, but the issue is that it only generates the final output file without updating the entire KNIME workflow. I just want to reset the flow and execute the flow So that I can get real-time updated workflow.
I automate this .bat file through the Windows task scheduler.
Real time means once in a week. Now I am getting output but it is only overwritten the final out as it is without updating the workflow. Means every time I get same data.
Ok so I think you’ll need to parameterize part of your workflow. Given that you want to run it once per week I take that data will be depending on the date and right now the date is hardcoded?
Maybe you can share your workflow with dummy data then we can help you make it dynamic…
If your workflow points to the same file and it doesn’t change on each execution obviously you’ll get the same output. You can try copying your new file to a folder by itself and then read it like this. After its read you can delete it so the folder is fresh for the next execution.