<?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 ignore/filter flow-files on the base of attributes  in Nifi in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165839#M128201</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;New question added here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hortonworks.com/questions/135939/compare-attributes-of-different-flowfiles.html" target="_blank"&gt;https://community.hortonworks.com/questions/135939/compare-attributes-of-different-flowfiles.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope you can help me.&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;</description>
    <pubDate>Fri, 08 Sep 2017 14:19:47 GMT</pubDate>
    <dc:creator>j_rodriguez</dc:creator>
    <dc:date>2017-09-08T14:19:47Z</dc:date>
    <item>
      <title>How to ignore/filter flow-files on the base of attributes  in Nifi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165833#M128195</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a scenario where I want to ignore flow files if an attribute of a flowfile contains invalid value (like filename contains invalid value i.e name of a directory rather then a filename)&lt;/P&gt;&lt;P&gt;Is there a way to totally discard/ignore a FlowFile on the base of an attribute value?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Obaid&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2016 00:25:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165833#M128195</guid>
      <dc:creator>obaid_salikeen</dc:creator>
      <dc:date>2016-09-23T00:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore/filter flow-files on the base of attributes  in Nifi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165834#M128196</link>
      <description>&lt;P&gt;The &lt;A target="_blank" href="https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.standard.RouteOnAttribute/index.html"&gt;RouteOnAttribute&lt;/A&gt; processor is what you're looking for, you can match on an attribute value (for example), and only route to a "matched" relationship; self-terminating the "unmatched" relationship would cause the FlowFile to be discarded/ignored. Also if you want to do any error handling you could route unmatched flow files to another processor to log or otherwise handle them.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2016 00:29:35 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165834#M128196</guid>
      <dc:creator>mburgess</dc:creator>
      <dc:date>2016-09-23T00:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore/filter flow-files on the base of attributes  in Nifi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165835#M128197</link>
      <description>&lt;P&gt;I'd add as a comment to Matt's answer that you can check the content of your attributes using the expression language [1]. It provides a lot of functions to deal with attributes and apply conditions to route your flow files if and only if they respect the conditions you want.&lt;/P&gt;&lt;P&gt;[1] &lt;A href="https://nifi.apache.org/docs/nifi-docs/html/expression-language-guide.html" target="_blank"&gt;https://nifi.apache.org/docs/nifi-docs/html/expression-language-guide.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2016 00:32:08 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165835#M128197</guid>
      <dc:creator>pvillard</dc:creator>
      <dc:date>2016-09-23T00:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore/filter flow-files on the base of attributes  in Nifi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165836#M128198</link>
      <description>&lt;P&gt;Thanks a lot @&lt;A href="https://community.hortonworks.com/users/641/mburgess.html"&gt;Matt Burgess&lt;/A&gt; and @&lt;A href="https://community.hortonworks.com/users/5078/pvillard.html"&gt;Pierre Villard&lt;/A&gt; for a quick response,&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2016 00:34:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165836#M128198</guid>
      <dc:creator>obaid_salikeen</dc:creator>
      <dc:date>2016-09-23T00:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore/filter flow-files on the base of attributes  in Nifi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165837#M128199</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Is it possible to compare the attributes of two different flowfiles and only pass one if the comparisson results matched?&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2017 20:11:48 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165837#M128199</guid>
      <dc:creator>j_rodriguez</dc:creator>
      <dc:date>2017-09-07T20:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore/filter flow-files on the base of attributes  in Nifi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165838#M128200</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/18856/jrodriguez.html" nodeid="18856"&gt;@Jon Rodriguez Breton&lt;/A&gt;&lt;P&gt;This should be a new question in HCC, not appended to your first question.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 02:17:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165838#M128200</guid>
      <dc:creator>Wynner</dc:creator>
      <dc:date>2017-09-08T02:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore/filter flow-files on the base of attributes  in Nifi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165839#M128201</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;New question added here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hortonworks.com/questions/135939/compare-attributes-of-different-flowfiles.html" target="_blank"&gt;https://community.hortonworks.com/questions/135939/compare-attributes-of-different-flowfiles.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope you can help me.&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 14:19:47 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-ignore-filter-flow-files-on-the-base-of-attributes-in/m-p/165839#M128201</guid>
      <dc:creator>j_rodriguez</dc:creator>
      <dc:date>2017-09-08T14:19:47Z</dc:date>
    </item>
  </channel>
</rss>

