[
https://issues.apache.org/jira/browse/NIFI-4465?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16201625#comment-16201625
]
ASF GitHub Bot commented on NIFI-4465:
--------------------------------------
Github user patricker commented on the issue:
https://github.com/apache/nifi/pull/2194
@ijokarumawak Your code for doing the record reader was very creative. but
I don't think I'm interested in using that approach, it makes me feel kind of
dirty...
```
try {
// Wait for the next record.
consumingLatch.countDown();
readingLatch.await();
// Start consuming the record.
} catch (InterruptedException e) {
logger.warn("Reading Excel sheet is interrupted at
nextRecord() due to {}", e);
} finally {
// Reset Latches.
consumingLatch = new CountDownLatch(1);
readingLatch = new CountDownLatch(1);
}
```
I'll work on the other items you mentioned.
> ConvertExcelToCSV Data Formatting and Delimiters
> ------------------------------------------------
>
> Key: NIFI-4465
> URL: https://issues.apache.org/jira/browse/NIFI-4465
> Project: Apache NiFi
> Issue Type: Improvement
> Components: Core Framework
> Reporter: Peter Wicks
> Assignee: Peter Wicks
> Priority: Minor
> Fix For: 1.5.0
>
>
> The ConvertExcelToCSV Processor does not output cell values using the
> formatting set in Excel.
> There are also no delimiter options available for column/record delimiting.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)