1973
Posts
1225
Kudos Received
124
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
773 | 04-03-2024 06:39 AM | |
1425 | 01-12-2024 08:19 AM | |
771 | 12-07-2023 01:49 PM | |
1326 | 08-02-2023 07:30 AM | |
1922 | 03-29-2023 01:22 PM |
05-24-2021
11:58 AM
1 Kudo
Use JDK 8 or JDK 11, JDK 9 is not supported JDK 9 issues https://github.com/graphhopper/graphhopper/issues/1391
... View more
05-24-2021
11:56 AM
Some examples https://community.cloudera.com/t5/Support-Questions/How-Extract-text-from-a-multiline-flow-and-create-only-one/td-p/104706 https://nathanlabadie.com/recombining-multiline-logs-with/ https://github.com/tspannhw/EverythingApacheNiFi/blob/main/README.md
... View more
05-21-2021
07:15 AM
Use UpdateRecord (csv reader, json writer) to change date PutDatabaseRecord to save to oracle https://www.datainmotion.dev/2020/12/simple-change-data-capture-cdc-with-sql.html https://www.datainmotion.dev/2019/10/migrating-apache-flume-flows-to-apache_15.html https://www.datainmotion.dev/2021/01/flank-real-time-transit-information-for.html https://www.datainmotion.dev/2020/12/smart-stocks-with-flank-nifi-kafka.html https://github.com/tspannhw/EverythingApacheNiFi https://www.datainmotion.dev/2021/03/processing-fixed-width-and-complex-files.html https://www.datainmotion.dev/2020/06/no-more-spaghetti-flows.html
... View more
05-11-2021
05:58 AM
VMs are not optimal. Run microservices in Kafka Connect, NiFi Stateless, Flink, Spark or Python in CML, Jupyter Notebooks. SQL Stream builder. all good options
... View more
05-10-2021
09:42 AM
2 Kudos
https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-prometheus-nar/1.11.1/org.apache.nifi.reporting.prometheus.PrometheusReportingTask/ You will need to open a JIRA. You should not run 3 nifis on the same machine unless it's in K8. NiFi needs a lot of RAM and cores.
... View more
04-30-2021
12:05 PM
what version of NiFi? you can tweak the log level of each processor in the properties. You can also query the stats with reporting tasks you can also access stats via the rest api https://github.com/tspannhw/EverythingApacheNiFi
... View more
04-19-2021
04:40 AM
QueryRecordProcessor grabs fields from content You can also add attributes there You can also add attributes via updaterecord https://www.datainmotion.dev/2020/12/smart-stocks-with-flank-nifi-kafka.html
... View more
04-15-2021
06:28 AM
check disk space http://apache-nifi-users-list.2361937.n4.nabble.com/Clarifications-on-getting-flowfiles-using-FlowFileFilters-td7333.html
... View more
04-15-2021
05:54 AM
1 Kudo
Unfortunately variables cannot be inside other dynamic parameters. It is already rendered by then. What you can do is store this part select * from tbl_sales where load_date= then updateattribute query ${result:append( "'" +${load_date} +"'")}
... View more
04-12-2021
04:39 PM
Add more RAM and CPU to your NiFi server Add more NiFi servers to your cluster. How much is HUGE DATA? You will need some amount of RAM to process it. Make sure minimum JVM RAM on each node is a good size for big workloads. 32G at least.
... View more