Member since
10-07-2022
8
Posts
0
Kudos Received
0
Solutions
03-16-2023
08:13 AM
My question is more about How to write SQL query to filter it out? My current query: SELECT * FROM FLOWFILE WHERE Customer_AccountID = ${value}
... View more
03-16-2023
02:20 AM
I'm trying to using NIFI dynamically filter flow Files in JSON format and keep only those values that are present is one SQL table. I'm using QueryRecord processor, with query like: SELECT * FROM FLOWFILE WHERE ${key} = ${value} only those values that are present in QueryDatabaseTable variables should be kept. Flow Files to be filtered looks like these: [ { "CustomerID" : 1, "OrderNbr" : "12", "Amount":100 } ] CustomerID field is the one to check and filter data. My current NIFI flow:
... View more
Labels:
- Labels:
-
Apache NiFi
12-20-2022
02:12 AM
Hi Matt, My flow is basically reading big file and loading it into a SQL DB. I'm simply looking to wait until insert statement is fully completed and after that move to some other task. My current flow ( doesn't work as expected right now): Convert SQL processor: Execute SQL processor: Wait processor: My question is how to properly configure wait processor to fill success queue only once full insert statement is done? Full flow:
... View more
12-19-2022
09:45 AM
I wanted to wait until 'ExecuteSQL' processor finishes inserting big file into SQL database (table: bu_service_template), then move to other section. 'ExecuteSQL' processor inserts row by row content of a file. I wanted to wait until file is fully inserted and then move to a next file. My current flow: wait flow
... View more
Labels:
- Labels:
-
Apache NiFi