Member since
12-14-2022
3
Posts
0
Kudos Received
0
Solutions
04-11-2023
06:25 AM
I have a pipeline running on a daily basis, I wish to receive an email alert whenever any of the processor fails. I tried testing put email processor, I am receiving success flow files after PutEmail but email is not being generated despite entering correct SMTP details. Kindly suggest if I am missing on anything. My nifi pipeline flow is as follows : getMongo > flatteJson > evaluateJsonPath > attributeToJson > queryRecord > updateAttribute > PutS3 For eg : If I get an error in QueryRecord : column 'x' not found in list of columns. This failure alert should be sent on my email. PFB the properties I have used for configuration of PutEmail processor
... View more
Labels:
- Labels:
-
Apache NiFi
-
NiFi Registry
12-15-2022
09:14 PM
@steven-matison Hello, gt is supposed to be greater than right ? I want to have a date filter/condition stating my date column("updatedAt") should be greater than yesterday i.e. to fetch only the daily new records from my mongoDb database
... View more
12-14-2022
10:53 PM
I am trying to write the below query in getMongo processor {"updatedAt" : {$gt : 2022-12-10}} But it is showing an error stating that query is not a valid JSON representation. I tried adding double quotes as well but when I run it, it doesn't show any error nor any results in success, failure or original nodes. My end goal is to fetch incremental data i.e. only the new data added daily (day -1) using "updatedAt" field. Kindly help me with this
... View more
Labels:
- Labels:
-
Apache NiFi