File Reader Custom Row Delimiter validation

Good morning,

while exploring options to ensure column type consistency across different file formats, I presumably stumbled across a bug in

Steps to reproduce:

  1. Select a file to read
  2. Switch to custom row Delimiter
  3. Remove the input value or provide a wrong one (i.e. multiple characters or to trigger validation
  4. Switch back to regular Line break
  5. Observe the issue

Suggestion
I’d like to propose, which would also enable reading a file w/o any row delimiter (just a single line), to accept an empty value too.

Explanation
Data, especially created, maintained or altered, is likely to face inconsistencies sooner or later. On several occasions I was required, in particular when semi formatted data was handed over, to pre-process it.

Addition
This very likely applies to any other reader node type as well.

Best
Mike

hi @mwiegand ,
the error message that you get is due to the fact that the custom input value does not get repopulated with the default value upon deselection. Seems like that KNIME complains even if the “Custom” option is not selected.
It looks like a minor bug, I will report that internally.

About your suggestion of reading the file in a single line, I did a quick experiment trying to read a whole file without delimiters (I put a special character as custom row delimiter). The first issue I can see is that the column quickly exceeded the max memory. Do you have a use case when this would be a crucial requirement?

Cheers,
Emilio

2 Likes

Hi @emilio_s,

many thanks for raising the ticket. About your question of use case to read an entire file as a single line.

Imagine you have semi-structured data or data which contains (caused by human error / copy & paste), line breaks in a data cell i.e. when reading Excel. You might want to, as I did frequently:

  1. Read the data “raw” w/o line breaks, quotes etc.
  2. Pre-Process i.e. by removing all line breaks and inserting special markers like $DELI$ based on pattern match (i.e. if every line starts with a date)
  3. Use Cell Split Node to split into list based on custom defined marker (see above)

If necessary, I could generate a test workflow to display the explained scenario.

Best
Mike

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.