You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CSV library under the hood uses parallel stream, which for some reason (I suspect this is the source) is emitting a bunch of exit messages. NimbleOptions will perform better anyway I suspect, as we can build the parsers at compile time.
The text was updated successfully, but these errors were encountered:
Honestly, its been a long time since I looked at the code here. Ultimately changing it to use NimbleCSV likely involves something like:
a Spark.Dsl.Transformer that creates the compiler for a resource at compile time (i.e does something like this NimbleCSV.define(MyParser, separator: "\t", escape: "\"") (but embedding the resource fields in some way)
swap out all of the csv operations to use NimbleCSV via the new parser
The CSV library under the hood uses parallel stream, which for some reason (I suspect this is the source) is emitting a bunch of exit messages. NimbleOptions will perform better anyway I suspect, as we can build the parsers at compile time.
The text was updated successfully, but these errors were encountered: