<?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: NiFi ConvertExcelToCSVProcessor dropping flow attributes in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ConvertExcelToCSVProcessor-dropping-flow-attributes/m-p/222302#M79566</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/75196/danielbates.html" nodeid="75196"&gt;@Daniel
 Bates
&lt;/A&gt;
&lt;/P&gt;&lt;P&gt;Yep,I'm able to reproduce the same scenario in NiFi-1.5 but &lt;STRONG&gt;not in NiFi-1.6.&lt;BR /&gt;&lt;/STRONG&gt;In NiFi-1.6 attributes are not dropping after ConvertExcelToCSV processor.&lt;/P&gt;&lt;P&gt;As you can upgrade the NiFi version to 1.6 &lt;STRONG&gt;(or)&lt;/STRONG&gt; contact support team to get a patch &lt;STRONG&gt;(or)&lt;/STRONG&gt; As a workaround to fix this issue in NiFi-1.5 please refer to &lt;A href="https://community.hortonworks.com/questions/188338/attributes-lost-after-running-selecthiveql.html" target="_blank"&gt;this&lt;/A&gt; link and implement the same logic to store all the attributes in &lt;STRONG&gt;DistributedCache &lt;/STRONG&gt;and Fetch them from DistributedMapCache after ConvertExcelToCsv processor.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Click on Accept button below to accept the answer,&lt;/STRONG&gt; if the answer helped to resolve your issue..!!&lt;/P&gt;</description>
    <pubDate>Thu, 14 Jun 2018 19:42:02 GMT</pubDate>
    <dc:creator>Shu_ashu</dc:creator>
    <dc:date>2018-06-14T19:42:02Z</dc:date>
    <item>
      <title>NiFi ConvertExcelToCSVProcessor dropping flow attributes</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ConvertExcelToCSVProcessor-dropping-flow-attributes/m-p/222301#M79565</link>
      <description>&lt;P&gt;I'm using the ConvertExcelToCSVProcessor (1.5.0.3.1.0.0-564) to do what it's name describes, but it appears that my flow attributes are being dropped in the output flow. The processor correctly writes new attributes such as sheetname and numrows, but drops the existing attributes that I added earlier in the flow.&lt;/P&gt;&lt;P&gt;Is this universal behaviour (i.e. not just my config/data), and if so is it expected? I can provide more details if it's not happening for other folks.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 19:07:45 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ConvertExcelToCSVProcessor-dropping-flow-attributes/m-p/222301#M79565</guid>
      <dc:creator>daniel-b</dc:creator>
      <dc:date>2018-06-14T19:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi ConvertExcelToCSVProcessor dropping flow attributes</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ConvertExcelToCSVProcessor-dropping-flow-attributes/m-p/222302#M79566</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/75196/danielbates.html" nodeid="75196"&gt;@Daniel
 Bates
&lt;/A&gt;
&lt;/P&gt;&lt;P&gt;Yep,I'm able to reproduce the same scenario in NiFi-1.5 but &lt;STRONG&gt;not in NiFi-1.6.&lt;BR /&gt;&lt;/STRONG&gt;In NiFi-1.6 attributes are not dropping after ConvertExcelToCSV processor.&lt;/P&gt;&lt;P&gt;As you can upgrade the NiFi version to 1.6 &lt;STRONG&gt;(or)&lt;/STRONG&gt; contact support team to get a patch &lt;STRONG&gt;(or)&lt;/STRONG&gt; As a workaround to fix this issue in NiFi-1.5 please refer to &lt;A href="https://community.hortonworks.com/questions/188338/attributes-lost-after-running-selecthiveql.html" target="_blank"&gt;this&lt;/A&gt; link and implement the same logic to store all the attributes in &lt;STRONG&gt;DistributedCache &lt;/STRONG&gt;and Fetch them from DistributedMapCache after ConvertExcelToCsv processor.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Click on Accept button below to accept the answer,&lt;/STRONG&gt; if the answer helped to resolve your issue..!!&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 19:42:02 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ConvertExcelToCSVProcessor-dropping-flow-attributes/m-p/222302#M79566</guid>
      <dc:creator>Shu_ashu</dc:creator>
      <dc:date>2018-06-14T19:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi ConvertExcelToCSVProcessor dropping flow attributes</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ConvertExcelToCSVProcessor-dropping-flow-attributes/m-p/222303#M79567</link>
      <description>&lt;P&gt;Thanks &lt;A href="https://community.hortonworks.com/questions/197962/nifi-convertexceltocsvprocessor-dropping-flow-attr.html#"&gt;@Shu&lt;/A&gt; - upgrading to 1.6 is not an option right now so I'm implemented the DistributedMapCache workaround you linked. Edit: Seems I'd misunderstood how the PutDistributedMapCache processor works. It appears to place the flow content into the cache, but in my case the content is the spreadsheet I'm trying to convert, so replacing that with the flow attributes so I can cache them results in losing the spreadsheet in the process. The example you linked doesn't hydrate the flow content with "real" data until after the caching has taken place, so that works fine.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jun 2018 18:42:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ConvertExcelToCSVProcessor-dropping-flow-attributes/m-p/222303#M79567</guid>
      <dc:creator>daniel-b</dc:creator>
      <dc:date>2018-06-19T18:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi ConvertExcelToCSVProcessor dropping flow attributes</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ConvertExcelToCSVProcessor-dropping-flow-attributes/m-p/222304#M79568</link>
      <description>&lt;P&gt;I ended up compiling the source code for the 1.6 processor and deploying that, it seems to play nicely with the 1.5 NiFi framework.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 23:41:11 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ConvertExcelToCSVProcessor-dropping-flow-attributes/m-p/222304#M79568</guid>
      <dc:creator>daniel-b</dc:creator>
      <dc:date>2018-06-21T23:41:11Z</dc:date>
    </item>
  </channel>
</rss>

