Sparklyr 忽略行定界符

Sparklyr ignoring line delimiter

我正在尝试在 sparklyr 中读取 2GB~(5mi 行)的 .csv 文件:

bigcsvspark <- spark_read_csv(sc, "bigtxt", "path", 
                              delimiter = "!",
                              infer_schema = FALSE,
                              memory = TRUE,
                              overwrite = TRUE,
                              columns = list(
                                  SUPRESSED COLUMNS AS = 'character'))

并出现以下错误:

Job aborted due to stage failure: Task 9 in stage 15.0 failed 4 times, most recent failure: Lost task 9.3 in stage 15.0 (TID 3963,
10.1.4.16):  com.univocity.parsers.common.TextParsingException: Length of parsed input (1000001) exceeds the maximum number of characters defined in your parser settings (1000000). Identified line separator characters in the parsed content. This may be the cause of the error. The line separator in your parser settings is set to '\n'. Parsed content: ---lines of my csv---[\n]
---begin of a splited line --- Parser Configuration: CsvParserSettings:     ... default settings ...

和:

CsvFormat:
    Comment character=[=12=]
    Field delimiter=!
    Line separator (normalized)=\n
    Line separator sequence=\n
    Quote character="
    Quote escape character=\
    Quote escape escape character=null Internal state when error was thrown:
        line=10599, 
        column=6, 
        record=8221, 
        charIndex=4430464, 
        headers=[---SUPRESSED HEADER---], 
        content parsed=---more lines without the delimiter.---

如上所示,在某些时候行分隔符开始被忽略。在纯 R 中可以毫无问题地读取,只需 read.csv 传递路径和分隔符。

看起来文件并不是真正的 CSV,我想知道 spark_read_text() 在这种情况下是否会更好。您应该能够将所有行带入 Spark,并将行拆分为内存中的字段,最后一部分将是最棘手的。