Member since
12-08-2015
15
Posts
9
Kudos Received
0
Solutions
09-19-2016
01:42 PM
1 Kudo
If you have an Apache NiFi cluster, there are several approaches for processing data in parallel. This article describes the approaches: https://community.hortonworks.com/articles/16120/how-do-i-distribute-data-across-a-nifi-cluster.html
... View more
03-20-2019
08:07 AM
HI @Mats Johansson, Could you please specify what syntax to be used to fetch contents of table.
... View more
09-15-2016
01:05 PM
Check out the Developer's Guide https://nifi.apache.org/developer-guide.html
... View more
09-15-2016
09:12 AM
4 Kudos
Hi, you may find interesting the following posts: http://bryanbende.com/development/2016/08/22/apache-nifi-1.0.0-using-the-apache-ranger-authorizer http://bryanbende.com/development/2016/08/17/apache-nifi-1-0-0-authorization-and-multi-tenancy http://bryanbende.com/development/2016/08/31/apache-nifi-1.0.0-kerberos-authentication
... View more
09-15-2016
09:16 AM
2 Kudos
Hi, If you are talking about API exposed by NiFi, NiFi exposes a REST API: https://nifi.apache.org/docs/nifi-docs/rest-api/index.html If you want to develop your own processor in Java, this is easy and you may find interesting the following: https://nifi.apache.org/docs/nifi-docs/html/developer-guide.html
... View more
09-15-2016
09:22 AM
6 Kudos
@Sunil Mukati Your question is very broad, so if you need more info please be specific. Based on the question tags I'm going to assume you're asking about NiFi integration with Spark, Kafka, Storm, and Solr. The short answer is yes - we can integrate NiFi with other Apache Software 🙂 NiFi provides an easy way to stream data between different systems, and has in-built processors for dealing with most of the common Apache stack. Kafka NiFi has in-built processors to stream into and read data from Kafka: PutKafka GetKafka PublishKafka ConsumeKafka I'd suggest checking out the following tutorial to get you started: http://hortonworks.com/hadoop-tutorial/realtime-event-processing-nifi-kafka-storm/ Solr NiFi has a PutSolrContentStream processor that allows you to stream data directly into a Solr index. Check out the following tutorial that uses NiFi to index twitter data directly into Solr and visualises it using banana: https://community.hortonworks.com/articles/1282/sample-hdfnifi-flow-to-push-tweets-into-solrbanana.html Spark Spark doesn't supply a mechanism to have data pushed to it, and instead pulls from other sources. You can integrate NiFi directly with Spark Streaming by exposing an Output Port in NiFi that Spark can consume from. The following article explains how to set up this integration: https://community.hortonworks.com/articles/12708/nifi-feeding-data-to-spark-streaming.html Note that typical streaming architecture involves NiFi pushing data to Kafka, and Spark Streaming (or Storm) reading from Kafka. Storm As above, typically NiFi is integrated with Storm with Kafka acting as the message buffer. The tutorial realtime event processing tutorial linked above covers the details of building a streaming application in NiFi Kafka & Storm.
... View more
09-15-2016
09:22 AM
4 Kudos
Hi, No Apache NiFi is not running on YARN. It does connect with elements running on YARN such as Storm, Spark, Hive, Hbase, etc. Apache NiFi itself is running as an independent JVM process (or multiple JVMs in cluster mode).
... View more
09-15-2016
05:20 AM
Thanks Bryan Bende!
... View more