Member since
02-01-2022
270
Posts
96
Kudos Received
59
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2169 | 06-12-2024 06:43 AM | |
3273 | 04-12-2024 06:05 AM | |
2203 | 12-07-2023 04:50 AM | |
1332 | 12-05-2023 06:22 AM | |
2258 | 11-28-2023 10:54 AM |
08-07-2023
06:51 AM
2 Kudos
@sam_s0ni I took up this conversation internally and exposed another related JIRA 11763. This behavior was removed in 1.19 and will not be coming back due to nature of parameter evaluation against references of those parameters when they are changed. You can view the conversation for NIFI-11763 here: https://issues.apache.org/jira/browse/NIFI-11763
... View more
08-07-2023
06:40 AM
@Sivaluxan Assuming Huawei OBS is s3 compliant( a quick search says it is), you should be able to use all of the S3/OBS based nifi processors. You would just need to satisfy the access/auth requirements in order to connect from NiFi to H OBS from within the of the processors below. https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-aws-nar/1.22.0/org.apache.nifi.processors.aws.s3.ListS3/index.html https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-aws-nar/1.22.0/org.apache.nifi.processors.aws.s3.FetchS3Object/index.html https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-aws-nar/1.11.4/org.apache.nifi.processors.aws.s3.PutS3Object/index.html
... View more
07-21-2023
04:24 AM
@License Yes, a true DR Solution is a fully duplicated production cluster. This requires the necessary licensing for all PROD and DR nodes.
... View more
07-17-2023
08:43 AM
@Aimen I would be willing to help you get started. Shoot me a DM to co-ordinate a working session.
... View more
07-17-2023
08:38 AM
@Madhav_VD This is a job that nifi can do itself. You would just tail the log file w/ nifi TailFile. https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-standard-nar/1.20.0/org.apache.nifi.processors.standard.TailFile/ Once you have the log file going into flowfiles in nifi, you can build your flow to filter lines you want to versus lines you do not want. Then when ready use any flavor of database processor (ExecuteSQLRecord, ExecuteSQL, PutSQL, PutDatabase, etc) to translate the log line into a sql insert statement.
... View more
07-17-2023
08:32 AM
@Aimen We will need to see screen shots of your flow, and the configuration for the s3 processor. It also helps to share the exact error, etc. Without this information, it is not possible to suggest solutions.
... View more
07-12-2023
08:44 AM
1 Kudo
@rupeshh , make a new post and describe your solution, then click Accept As Solution!! Then this post will be available in future for anyone experiencing similar. Great job getting it rectified!
... View more
07-10-2023
05:32 AM
@cotopaul This may be worthy of a JIRA and a fix. PutBigQueryBatch is going away, so if there is some function missing in PutBigQuery we need to get it in there. I just did some work on PutBigQuery, let me have a discussion with @davidh and I will get back to this asap. If you can, share an example flow.
... View more
06-30-2023
09:22 AM
2 Kudos
@TaxcalcRanjit I have a flow that demos how to take a CSV flowfile and format into html table. That flow is here: https://raw.githubusercontent.com/cldr-steven-matison/NiFi-Templates/main/CSV_to_Table_Demo.json In this example I am using GenerateFlowfile to send some CSV data to a ReplaceText to replace the , (commas) with html code for separating each column in the table (</td><td>), and end of line and new line with html to end each row and start another ( </tr><tr>). The end result is a full html table with the results of the csv as rows and columns. You need to do something similar here to solve your use case to build the html source for your table's data. I am not sure if your upstream flowfiles are all lines in one flowfile or one flowfile per result. Either way you have to manipulate those flowfiles into html for the table structure matching your data Once the flowfile is formatted correctly as html, then you can send to PutEmail.
... View more
06-30-2023
06:25 AM
@wallacei That is correct. NiFi is not part of CDP Base. You need a trial for CFM.
... View more