I have a nifi flow which extracts records from RDBMS (SQL Server) table and put these on HDFS in parquet format. This flow will run several times in a day to get delta records from source table. Now I need to replicate this same process for 100+ different source tables. So rather than creating 100+ nifi flows for each separate table, can I create main flow (let's say template) and pass parameter like source extract sql, target file name etc to main flow and repeat these steps for each source table. I am using Nifi Nifi 1.7. I am pretty close to parameterizing the flow itself.
Example- Parameterizing the parameters in the components used in the flow. Example- Filename = ${path}/${filename}
Not sure how to pass values to this flow from command line?
Thanks, Sid
curlyou can start new instance of your flow. - daggett