Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sparklyr ignoring line delimiter

Tags:

r

csv

sparklyr

I'm trying to read a .csv of 2GB~ (5mi lines) in sparklyr with:

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

And getting the following error:

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 ...

and:

CsvFormat:
    Comment character=\0
    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.---

As shown above at some point the line separator start to be ignored. In pure R can be read without problem, just read.csv passing the path and delimiter.

like image 763
Jader Martins Avatar asked Oct 13 '17 19:10

Jader Martins


1 Answers

it looks like the file is not really a CSV, I wonder if spark_read_text() would work better in this situation. You should be able to bring all the lines into Spark, and split the lines into fields in memory, That last part, will be the trickiest.

like image 156
edgararuiz Avatar answered Sep 19 '22 17:09

edgararuiz