Member since
07-08-2022
3
Posts
0
Kudos Received
0
Solutions
01-04-2023
11:00 AM
1.first try this import org.apache.nifi.processors.aws.s3.*; 2.check if you are having dependency for this nifi.aws.-abstract-processors 3. check version of dependency(nifi.aws.-abstract-processors).
... View more
07-09-2022
12:45 PM
1 Kudo
Hi, If your configurations are similar to mine then I would suggest that you test it on version 1.16.0 to see if its a bug with version 1.16.2 which in this case needs to be reported. Another option for you is to write custom code using ExecuteScript processor that will generate a different flowfile for each json record since the ExecuteProcess wont have this option and would write everything in the output steam into one flowfile. you can refer to the following post to help you generate multiple flowfiles: https://community.cloudera.com/t5/Support-Questions/Split-one-Nifi-flow-file-into-Multiple-flow-file-based-on/m-p/203387 Another option you can try incase there is a problem with the SplitContent processor is to create every json record in a different line and then try to split them using SplitText processor and set the property "Split Line Count" to 1
... View more