Export data from KNIME for processing in Python (externaly)

@TheLeo you could use Parquet to keep the column types. Or SQLite database:

ORC could also be an option but it might be more complicated. Both ORC and Parquet would allow to read and write data in chunks.

If you absolutely must have a text only file. ARFF is another option:

If you want to explore more about exchange between KNIME and Python you might have a look here:

2 Likes