I am reading from a database and making a csv out of it using QueryDatabaseRecord and ConvertRecord processors.
I want one of the columns in the csv to be extracted and used to name my CSV file that will be stored locally on my system via PutFile or in S3.
CSV looks like,
cola,colb,colc,date
A1,123,vin9,2020-02-04
A2,456,vin9,2020-02-04
A3,789,vin9,2020-02-04
I want to extract just the first row's colc and date field to produce a filename called vin9-2020-02-04.csv for my output dump.
Which processor can help me achieve this? Thanks!



