<?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: Details on Nifi Fault Tolerance in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174661#M46202</link>
    <description>&lt;P&gt;So the repo needs to be a shared (like NFS) storage between Nifi nodes?&lt;/P&gt;</description>
    <pubDate>Tue, 15 Nov 2016 05:55:28 GMT</pubDate>
    <dc:creator>ambud_sharma1</dc:creator>
    <dc:date>2016-11-15T05:55:28Z</dc:date>
    <item>
      <title>Details on Nifi Fault Tolerance</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174654#M46195</link>
      <description>&lt;P&gt;How does Nifi Fault Tolerance and more importantly FlowFile acking work?&lt;/P&gt;&lt;P&gt;Specifically looking at Nifi from a streaming background:&lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;How does guaranteed FlowFile processing work? On a single node it's based on WAL but if there's no replication across Nifi nodes; how will other nodes know where to resume processing from?&lt;/LI&gt;&lt;LI&gt;How can failover with guaranteed processing be implemented using existing Processors?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This post goes high level on but doesn't talk about specifics of how the failover will work.
&lt;A href="https://community.hortonworks.com/questions/46887/is-nifi-fault-tolerant-against-machine-failures.html" target="_blank"&gt;https://community.hortonworks.com/questions/46887/is-nifi-fault-tolerant-against-machine-failures.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2016 05:27:15 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174654#M46195</guid>
      <dc:creator>ambud_sharma1</dc:creator>
      <dc:date>2016-11-15T05:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: Details on Nifi Fault Tolerance</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174655#M46196</link>
      <description>&lt;P&gt;Hi Ambud,&lt;/P&gt;&lt;P&gt;This section in the Storm documentation provides an 
excellent explanation on how acking and fault tolerance work together to
 guarantee at least once processing: &lt;/P&gt;&lt;P&gt;&lt;A href="http://storm.apache.org/releases/1.0.2/Guaranteeing-message-processing.html"&gt;http://storm.apache.org/releases/1.0.2/Guaranteeing-message-processing.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2016 05:32:49 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174655#M46196</guid>
      <dc:creator>rtempleton</dc:creator>
      <dc:date>2016-11-15T05:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Details on Nifi Fault Tolerance</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174656#M46197</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/252/rtempleton.html" nodeid="252"&gt;@Ryan Templeton&lt;/A&gt; thanks for your answer Ryan; the question is how it works in Nifi not Storm.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2016 05:34:19 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174656#M46197</guid>
      <dc:creator>ambud_sharma1</dc:creator>
      <dc:date>2016-11-15T05:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Details on Nifi Fault Tolerance</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174657#M46198</link>
      <description>&lt;P&gt;Sorry, misread your question as Storm fault tolerance, not NiFi.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2016 05:37:30 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174657#M46198</guid>
      <dc:creator>rtempleton</dc:creator>
      <dc:date>2016-11-15T05:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Details on Nifi Fault Tolerance</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174658#M46199</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/14221/ambudsharma.html" nodeid="14221"&gt;@ambud.sharma&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Each Node in a NiFi cluster runs its own copy of the dataflow and works on its own set of FlowFiles.  Node A for example is unaware of the existence of Node B.  &lt;/P&gt;&lt;P&gt;NiFi does persist all FlowFiles (attributes and content) in to local repositories on each node in the cluster. That is why is is important to make these repo fault tolerant (For example using RAID 10 Disk for your repos).&lt;/P&gt;&lt;P&gt;Should a node go down, as long as you have access to those repos and copy of the flow.xml.gz, you can recover your dataflow where it left off, even if that means spinning up a new NiFi and pointing it at those existing repos.&lt;/P&gt;&lt;P&gt;NiFi comes with no automated built in process for this.&lt;/P&gt;&lt;P&gt;While Nodes at this current time are not aware of other nodes or the data the currently have queued, This is a roadmap item for a future version of NiFi.  At this time the HA Data plane stuff has not been committed to any particular release to the best of my knowledge.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2016 05:47:48 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174658#M46199</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2016-11-15T05:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Details on Nifi Fault Tolerance</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174659#M46200</link>
      <description>&lt;P&gt;Flow files content is written in the content repository. When a node 
goes down, NiFi cluster manager will route the data to another node. 
However, NiFi does not replicate data like Kafka. The queued data for 
the failed node will still be queued for failed node. Only that data 
must be manually sent over to the live node in the cluster or just bring
 the failed node up. Any new data, will automatically be routed to other
 nodes in the cluster by NiFi Cluster Manager (NCM).&lt;/P&gt;&lt;P&gt;&lt;A href="http://alvincjin.blogspot.com/2016/08/fault-tolerant-in-apache-nifi-07-cluster.html" target="_blank"&gt;http://alvincjin.blogspot.com/2016/08/fault-tolerant-in-apache-nifi-07-cluster.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2016 05:49:29 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174659#M46200</guid>
      <dc:creator>rtempleton</dc:creator>
      <dc:date>2016-11-15T05:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Details on Nifi Fault Tolerance</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174660#M46201</link>
      <description>&lt;P&gt;Only the NiFi 0.x or HDF 1.x versions of NiFi use a NCM.   NiFI 1.x or HDF 2.x versions have moved to zero master clustering and do not have an NCM anymore (HA control plane).  &lt;/P&gt;&lt;P&gt;The routing of data you are referring to is specific to data being sent to your NiFi cluster via Site-to-Site (S2S).  S2S does make sure that data continues to route to only the available destination nodes.&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2016 05:54:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174660#M46201</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2016-11-15T05:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Details on Nifi Fault Tolerance</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174661#M46202</link>
      <description>&lt;P&gt;So the repo needs to be a shared (like NFS) storage between Nifi nodes?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2016 05:55:28 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Details-on-Nifi-Fault-Tolerance/m-p/174661#M46202</guid>
      <dc:creator>ambud_sharma1</dc:creator>
      <dc:date>2016-11-15T05:55:28Z</dc:date>
    </item>
  </channel>
</rss>

