Member since
08-22-2018
12
Posts
0
Kudos Received
0
Solutions
08-04-2020
07:32 AM
Did you ever find a workaround/solution for this?
... View more
10-17-2018
01:45 PM
1 Kudo
Your whole flow will perform better if you have flow files with many records, rather than 1 record per flow file. PutDatabaseRecord will set auto-commit to false on the connection, then start executing the statements, and if any failure happens it will call rollback on the connection.
... View more
05-02-2019
08:28 PM
Hi Matt, I am new to nifi and i have similar usecase where i want to insert entire flow file content as clob value it throws error when i just use replace text and putSQL processors and i don't have any idea on how to handle it using putDatabaseRecord. Can you provide any example on this one.
... View more
08-24-2018
05:30 AM
Thanks you very much for the solution.The solution worked like charm. I applied the DDL in postgres CREATE SEQUENCE id_seq START 101; The pipeline generated the sequence.nextvalue in the id column. [{"studentName":"Foo","Age":"12","address_city":"newyork","address1":"North avenue","zipcode":"123213","id":"101"},{"studentName":"Foo1","Age":"12","address_city":"newyork","address1":"North avenue","zipcode":"123213","id":"102"},{"studentName":"Foo2","Age":"12","address_city":"newyork","address1":"North avenue","zipcode":"123213","id":"103"}] Thanks again!!!
... View more