<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: How to configure NiFi processors (that interface with external services) in a Cluster environment in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141888#M52230</link>
    <description>&lt;P&gt;Thanks a lot &lt;A rel="user" href="https://community.cloudera.com/users/5078/pvillard.html" nodeid="5078"&gt;@Pierre Villard&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 01 Feb 2017 23:00:03 GMT</pubDate>
    <dc:creator>Raj_B</dc:creator>
    <dc:date>2017-02-01T23:00:03Z</dc:date>
    <item>
      <title>How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141884#M52226</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;We are about to move to a NiFi cluster environment from a Standalone NiFi instance; we did our dataflow development on the Standalone instance; looking at the NiFi Admin documentation, it appears that some of the processors we have in our dataflow need to be configured to work in a cluster environment; &lt;/P&gt;&lt;P&gt;From the admin guide...&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;EM&gt;"...In a NiFi cluster, the same dataflow runs on all the nodes. As a result, every component in the flow runs on every node. However, there may be cases when the DFM would not want every processor to run on every node.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;...&lt;/I&gt;&lt;EM&gt;the GetSFTP processor pulls from a remote directory, and if the GetSFTP on every node in the cluster tries simultaneously to pull from the same remote directory, there could be race conditions. Therefore, the DFM could configure the GetSFTP on the Primary Node to run in isolation, meaning that it only runs on that node. It could pull in data and &lt;STRONG&gt;-with the proper dataflow configuration-&lt;/STRONG&gt; load-balance it across the rest of the nodes in the cluster...."&lt;/EM&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;We have GetSFTP and ListenTCP that fall into this case mentioned above; the verbiage above, from Admin guide, in bold, alludes to "&lt;STRONG&gt;with the proper dataflow configuration"&lt;/STRONG&gt;, the data from these processors can load balance across the nodes, but it didn't say what configuration is needed to be done; any suggestions or guidance is greatly appreciated.&lt;/P&gt;&lt;P&gt;I'm thinking that PutHDFS processor does not need any special configuration for a Cluster environment, since on each node, it can write to HDFS whatever data is sent to it (from the dataflow on that node) and no coordination is needed between the PutHDFS processors running on the various nodes. Is my assumption correct ?&lt;/P&gt;&lt;P&gt;I did find some guidance on how to configure PutEmail in a cluster environment.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2017 09:13:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141884#M52226</guid>
      <dc:creator>Raj_B</dc:creator>
      <dc:date>2017-01-23T09:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141885#M52227</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/10100/rbolla.html" nodeid="10100"&gt;@Raj B&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Regarding the processors you mention:&lt;/P&gt;&lt;P&gt;- GetSFTP: if you want to load balance the access to the SFTP server, then I'd recommend the use of ListSFTP running on the primary node and the use of FetchSFTP on all the nodes. This way the actual download of files will be load balanced on your cluster without concurrent access to the files.&lt;/P&gt;&lt;P&gt;- Regarding ListenTCP, it depends if you want to have all your nodes of your cluster listening on a given port for TCP connection (with a load balancer in front of NiFi for example) or if you want only one node to listen on that port. However, keep in mind, there is no way to ensure that a given node will be the primary node, and going that way (having a client connecting to a specific node) is not recommended on a HA point of view.&lt;/P&gt;&lt;P&gt;- PutHDFS is fine as long as two nodes are not writing to the same path in HDFS.&lt;/P&gt;&lt;P&gt;Finally, there is one important point to remember to load balance data after a processor configured running on the primary node. If you do nothing special, then all the flow files will remain on the primary node from the beginning to the end. If you want to load balance the data, you need to connect your input processors to a Remote Process Group that is pointing to itself (to the cluster). This way the data will be actually load balanced on the cluster. You will find an example at the end of this post: &lt;A href="https://pierrevillard.com/2016/08/13/apache-nifi-1-0-0-cluster-setup" target="_blank"&gt;https://pierrevillard.com/2016/08/13/apache-nifi-1-0-0-cluster-setup&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2017 17:49:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141885#M52227</guid>
      <dc:creator>pvillard</dc:creator>
      <dc:date>2017-01-23T17:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141886#M52228</link>
      <description>&lt;P&gt;Thanks &lt;A rel="user" href="https://community.cloudera.com/users/5078/pvillard.html" nodeid="5078"&gt;@Pierre Villard&lt;/A&gt;, I'll look at the example you provided.&lt;/P&gt;&lt;P&gt;Just want to make sure I understood you correctly regarding ListenTCP; you're saying it's better for each node to listen to a port for incoming data in a HA, so if the sending system is sending data to one IP address, then we need a load balancer system/server that ingests that data and distributes it (in round robin or other fashion) to the various NiFi nodes; is that right ?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 02:23:00 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141886#M52228</guid>
      <dc:creator>Raj_B</dc:creator>
      <dc:date>2017-01-24T02:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141887#M52229</link>
      <description>&lt;P&gt;Let's say that if you don't configure your ListenTCP to run on your primary node only, then it will run on every node. You can of course give one of the IP address of your cluster to the client opening TCP connections but the load is not balanced and if this node dies, the client is not able to open connections anymore. However, if you setup a load balancer in front of your cluster, you will have a VIP (virtual IP) that you will give to your client and connections will be opened in a round-robin manner to every nodes of the cluster (then you have HA and load balancing). It is generally up to the load balancer to ensure that every node of the cluster is alive with something like a heartbeat.&lt;/P&gt;&lt;P&gt;As a general comment, each time you need a ListenX processor, you will certainly be in a situation where you need a load balancer and a virtual IP.&lt;/P&gt;&lt;P&gt;Let me know if you have other questions.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 04:31:30 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141887#M52229</guid>
      <dc:creator>pvillard</dc:creator>
      <dc:date>2017-01-24T04:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141888#M52230</link>
      <description>&lt;P&gt;Thanks a lot &lt;A rel="user" href="https://community.cloudera.com/users/5078/pvillard.html" nodeid="5078"&gt;@Pierre Villard&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 23:00:03 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141888#M52230</guid>
      <dc:creator>Raj_B</dc:creator>
      <dc:date>2017-02-01T23:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141889#M52231</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/5078/pvillard.html" nodeid="5078"&gt;@Pierre Villard&lt;/A&gt;&lt;P&gt;As you were saying about needing a load balancer anytime using a ListenX processor and giving a Virtual IP to your sending system, is Kafka, which is now part of HDF, able to act as a load balancer ? or it has to be something external, like HAProxy? &lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2017 03:56:37 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141889#M52231</guid>
      <dc:creator>Raj_B</dc:creator>
      <dc:date>2017-02-08T03:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141890#M52232</link>
      <description>&lt;P&gt;You can ask your sending system to send data to Kafka and then have NiFi to pull data from Kafka but the problem will be probably the same between your sender and Kafka (you will probably need to give the list of your kafka brokers to the sender and this is not ideal when you scale up/down). Regarding NiFi and Kafka, I recommend the following article:&lt;/P&gt;&lt;P&gt;&lt;A href="http://bryanbende.com/development/2016/09/15/apache-nifi-and-apache-kafka" target="_blank"&gt;http://bryanbende.com/development/2016/09/15/apache-nifi-and-apache-kafka&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2017 04:02:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141890#M52232</guid>
      <dc:creator>pvillard</dc:creator>
      <dc:date>2017-02-08T04:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141891#M52233</link>
      <description>&lt;P&gt;Thanks &lt;A rel="user" href="https://community.cloudera.com/users/5078/pvillard.html" nodeid="5078"&gt;@Pierre Villard&lt;/A&gt;, I read the article, it is talking about NiFi Kafka integration (within HDF cluster), which is quite helpful. But my interest is still regarding the interface between the HDF cluster and the sending system.&lt;/P&gt;&lt;P&gt;Is it possible to setup a virtual IP on the HDF Cluster, so that the sending system can send messages to that IP? if it is possible to do that, would that be done by a system level application (at the OS level) or HDF can do that ? sorry for my ignorance, but I'm not very knowledgeable about networking and IPs, etc.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2017 04:25:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141891#M52233</guid>
      <dc:creator>Raj_B</dc:creator>
      <dc:date>2017-02-08T04:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141892#M52234</link>
      <description>&lt;P&gt;AFAIK HDF does not provide a solution for load balancing (unless you implement something yourself through ZooKeeper). You need to have specific hardware equipment or use software solutions like HA proxy (in a docker container for example).&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2017 04:38:21 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141892#M52234</guid>
      <dc:creator>pvillard</dc:creator>
      <dc:date>2017-02-08T04:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141893#M52235</link>
      <description>&lt;P&gt;Thank you &lt;A rel="user" href="https://community.cloudera.com/users/5078/pvillard.html" nodeid="5078"&gt;@Pierre Villard&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2017 05:37:21 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141893#M52235</guid>
      <dc:creator>Raj_B</dc:creator>
      <dc:date>2017-02-08T05:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141894#M52236</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/5078/pvillard.html" nodeid="5078"&gt;@Pierre Villard&lt;/A&gt; I don't mean to beat the dead horse, but does ExecuteSQL processor also have the same issue as ListenX and GetX processors in a Cluster environment (the processor running on each node of the cluster and the need for coordination of which node will read which database records) &lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2017 01:04:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141894#M52236</guid>
      <dc:creator>Raj_B</dc:creator>
      <dc:date>2017-02-09T01:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141895#M52237</link>
      <description>&lt;P&gt;ExecuteSQL is not a passive processor (it does not wait for clients to send data), it is an active processor in charge of getting the data. As long as your remote DB accepts concurrent access/requests, then it's fine. When you retrieve data from a table and you want to load balance the queries, then have a look at GenerateTableFetch and QueryDatabaseTable processors.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2017 01:17:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141895#M52237</guid>
      <dc:creator>pvillard</dc:creator>
      <dc:date>2017-02-09T01:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141896#M52238</link>
      <description>&lt;P&gt;thank &lt;A rel="user" href="https://community.cloudera.com/users/5078/pvillard.html" nodeid="5078"&gt;@Pierre Villard&lt;/A&gt;, I'm sorry, I'm not sure if I understand it clearly; from what you said, it seems ExecuteSQL processor does not need any coordination between nodes as the DB that I'm querying takes care of the coordination (as the DB knows that the queries from the different nodes are in fact from the same job, so it won't send the same data to each node's query eventhough the same query/dataflow runs on each node); &lt;/P&gt;&lt;P&gt;so, if ExecuteSQL runs on each node and each node in return is getting different data, then we have the query's load being balanced across all nodes, right ? correct me if that thinking is wrong.&lt;/P&gt;&lt;P&gt;what do GenerateTableFetch and QueryDatabaseTable processors do that ExecuteSQL does NOT do in a Cluster environment. I'm not sure if I understand when you would use ExecuteSQL processor versus the other two.&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2017 02:02:38 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141896#M52238</guid>
      <dc:creator>Raj_B</dc:creator>
      <dc:date>2017-02-09T02:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141897#M52239</link>
      <description>&lt;P&gt;You're right. If you ensure that each ExecuteSQL takes care of its own part of data on each node of the cluster then you have load balancing. But if the same request is executed by all ExecuteSQL this won't be load balanced (unless your DB takes care of that for you).&lt;/P&gt;&lt;P&gt;GenerateTableFetch is meant to be executed on primary node to generate multiple flow files to retrieve all the data of a table, and each flow file will take care of one "page" of data. Then the flow files are distributed over the cluster and QueryDatabaseTable will actually fetch the data. But in this case you ensure that each flow file contains a query for different pieces of data of the same table. This way you won't duplicate data and you will have load balanced the queries.&lt;/P&gt;&lt;P&gt;ExecuteSQL can achieve the same kind of things, it really depends of your use case and how you define your queries.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2017 02:18:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141897#M52239</guid>
      <dc:creator>pvillard</dc:creator>
      <dc:date>2017-02-09T02:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141898#M52240</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/5078/pvillard.html" nodeid="5078"&gt;@Pierre Villard&lt;/A&gt; thank you for your continued engagement in this conversation. &lt;/P&gt;&lt;P&gt;1) It sounds like by default ExecuteSQL does not provide coordination between nodes for a query, to ensure the query is not duplicated on nodes; and I, as a developer, have to ensure that no duplication occurs (but I don't know what it is that I need to do to make ExecuteSQL work correctly in a cluster); so, an alternative is the combination of GenerateTableFetch and QueryDatabaseTable processors, which work properly by making the GenerateTableFetch run as an "Isolated Processor" on the primary node and QueryDatabaseTable on all nodes; Is that a correct summary of what we discussed thus far ?&lt;/P&gt;&lt;P&gt;2) Also you noted in your last comment : "ExecuteSQL can achieve the same kind of things, it really depends of your use case and how you define your queries." &lt;/P&gt;&lt;P&gt;My use case is to query Oracle and SQL Server databases, both of which support parallelization of queries; how do I need to define my queries differently for ExecuteSQL to work in a cluster while querying a relational database that supports query parallelization.&lt;/P&gt;&lt;P&gt;3) Is there any documentation on which NiFi processors work differently in a cluster versus a single node environment and what modifications need to be made for the processors to work correctly in a Cluster. So far my understanding is ListenX , GetX, and ExecuteSQL processors work differently in a Cluster.&lt;/P&gt;&lt;P&gt;Again, thank you for your time and patience.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Feb 2017 00:20:32 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141898#M52240</guid>
      <dc:creator>Raj_B</dc:creator>
      <dc:date>2017-02-10T00:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141899#M52241</link>
      <description>&lt;P&gt;1) Correct&lt;/P&gt;&lt;P&gt;2) It is really tied to your use case. Let's say you want to get the content of a database table which contains a column "jobId" and that you have in input a file listing all the job IDs for which you want to retrieve the associated data. You could have a GetFile -&amp;gt; SplitText -&amp;gt; ExtractText to have one flow file per job ID with the job ID in an attribute. All of this would run on primary node. Then you distribute the flow file on the cluster with a RPG. And finally, you can use ExecuteSQL with a query containing "WHERE jobId = ${jobId}". This way you have concurrent queries against the table but each query is accessing its own data. Again it really depends of the use case and how you can split the queries.&lt;/P&gt;&lt;P&gt;3) Not that I am aware of. The main reason being it really depends of the use case, there is no general rule.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Feb 2017 17:18:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141899#M52241</guid>
      <dc:creator>pvillard</dc:creator>
      <dc:date>2017-02-10T17:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141900#M52242</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/10100/rbolla.html" nodeid="10100"&gt;@Raj B&lt;/A&gt; - &lt;A href="https://pierrevillard.com/2017/02/10/haproxy-load-balancing-in-front-of-apache-nifi" target="_blank"&gt;https://pierrevillard.com/2017/02/10/haproxy-load-balancing-in-front-of-apache-nifi&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Feb 2017 18:31:21 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141900#M52242</guid>
      <dc:creator>pvillard</dc:creator>
      <dc:date>2017-02-10T18:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to configure NiFi processors (that interface with external services) in a Cluster environment</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141901#M52243</link>
      <description>&lt;P&gt;Thank you &lt;A rel="user" href="https://community.cloudera.com/users/5078/pvillard.html" nodeid="5078"&gt;@Pierre Villard&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I think I'm getting there... &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 21:57:47 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-configure-NiFi-processors-that-interface-with/m-p/141901#M52243</guid>
      <dc:creator>Raj_B</dc:creator>
      <dc:date>2017-02-13T21:57:47Z</dc:date>
    </item>
  </channel>
</rss>

