在Spark 2.1.0中读取大文件时出现内存不足错误

时间:2017-05-05 04:18:38

标签: xml scala apache-spark apache-spark-2.0 apache-spark-xml

我想使用spark将大型(51GB)XML文件(在外部硬盘上)读入数据帧(使用spark-xml plugin),进行简单的映射/过滤,重新排序,然后将其写回磁盘,作为CSV文件。

但无论我如何调整它,我总是得到java.lang.OutOfMemoryError: Java heap space

我想了解为什么不增加分区数量来阻止OOM错误

不应该将任务分成更多部分,以便每个部分都更小并且不会导致内存问题吗?

  

(Spark不可能尝试将所有东西都填入内存并且如果它不合适则会崩溃,对吧?)

我尝试过的事情:

  • 在读取和写入时(初始值为1,604)对数据帧进行重新分区/合并(5,000和10,000分区)
  • 使用较少数量的执行程序(6,4,即使使用 2 执行程序,我也会收到OOM错误!)
  • 减少拆分文件的大小(默认看起来像是33MB)
  • 给出大量的RAM(我所有的)
  • spark.memory.fraction增加到0.8(默认值为0.6)
  • spark.memory.storageFraction减少到0.2(默认值为0.5)
  • spark.default.parallelism设置为30和40(对我来说默认为8)
  • spark.files.maxPartitionBytes设置为64M(默认为128M)

我的所有代码都在这里(注意我没有缓存任何东西):

val df: DataFrame = spark.sqlContext.read
  .option("mode", "DROPMALFORMED")
  .format("com.databricks.spark.xml")
  .schema(customSchema) // defined previously
  .option("rowTag", "row")
  .load(s"$pathToInputXML")

println(s"\n\nNUM PARTITIONS: ${df.rdd.getNumPartitions}\n\n")
// prints 1604

// i pass `numPartitions` as cli arguments
val df2 = df.coalesce(numPartitions)

// filter and select only the cols i'm interested in
val dsout = df2
  .where( df2.col("_TypeId") === "1" )
  .select(
    df("_Id").as("id"),
    df("_Title").as("title"),
    df("_Body").as("body"),
  ).as[Post]

// regexes to clean the text
val tagPat = "<[^>]+>".r
val angularBracketsPat = "><|>|<"
val whitespacePat = """\s+""".r


// more mapping
dsout
 .map{
  case Post(id,title,body,tags) =>

    val body1 = tagPat.replaceAllIn(body,"")
    val body2 = whitespacePat.replaceAllIn(body1," ")

    Post(id,title.toLowerCase,body2.toLowerCase, tags.split(angularBracketsPat).mkString(","))

}
.orderBy(rand(SEED)) // random sort
.write // write it back to disk
.option("quoteAll", true)
.mode(SaveMode.Overwrite)
.csv(output)

备注

  • 输入分割非常小(仅33MB),为什么我不能每个处理一个分割的8个线程?它真的不应该让我记忆犹新(我已经

更新我写了一个更短版本的代码,只读取文件,然后是forEachPartition(println)。

我得到了同样的OOM错误:

val df: DataFrame = spark.sqlContext.read
  .option("mode", "DROPMALFORMED")
  .format("com.databricks.spark.xml")
  .schema(customSchema)
  .option("rowTag", "row")
  .load(s"$pathToInputXML")
  .repartition(numPartitions)

println(s"\n\nNUM PARTITIONS: ${df.rdd.getNumPartitions}\n\n")

df
  .where(df.col("_PostTypeId") === "1")
  .select(
   df("_Id").as("id"),
   df("_Title").as("title"),
   df("_Body").as("body"),
   df("_Tags").as("tags")
  ).as[Post]
  .map {
    case Post(id, title, body, tags) =>
      Post(id, title.toLowerCase, body.toLowerCase, tags.toLowerCase))
  }
  .foreachPartition { rdd =>
    if (rdd.nonEmpty) {
      println(s"HI! I'm an RDD and I have ${rdd.size} elements!")
    }
  }

P.S。:我正在使用spark v 2.1.0。我的机器有8个核心和16 GB RAM。

3 个答案:

答案 0 :(得分:1)

运行spark-shell时出现此错误,因此我将驱动程序内存增加了很多。然后我就可以加载XML。

spark-shell --driver-memory 6G

来源:https://github.com/lintool/warcbase/issues/246#issuecomment-249272263

答案 1 :(得分:0)

因为您要存储RDD两次 您的逻辑必须像这样更改或使用SparkSql过滤

 val df: DataFrame = SparkFactory.spark.read
      .option("mode", "DROPMALFORMED")
      .format("com.databricks.spark.xml")
      .schema(customSchema) // defined previously
      .option("rowTag", "row")
      .load(s"$pathToInputXML")
      .coalesce(numPartitions)

    println(s"\n\nNUM PARTITIONS: ${df.rdd.getNumPartitions}\n\n")
    // prints 1604


    // regexes to clean the text
    val tagPat = "<[^>]+>".r
    val angularBracketsPat = "><|>|<"
    val whitespacePat = """\s+""".r

    // filter and select only the cols i'm interested in
     df
      .where( df.col("_TypeId") === "1" )
      .select(
        df("_Id").as("id"),
        df("_Title").as("title"),
        df("_Body").as("body"),
      ).as[Post]
      .map{
        case Post(id,title,body,tags) =>

          val body1 = tagPat.replaceAllIn(body,"")
          val body2 = whitespacePat.replaceAllIn(body1," ")

          Post(id,title.toLowerCase,body2.toLowerCase, tags.split(angularBracketsPat).mkString(","))

      }
      .orderBy(rand(SEED)) // random sort
      .write // write it back to disk
      .option("quoteAll", true)
      .mode(SaveMode.Overwrite)
      .csv(output)

答案 2 :(得分:-2)

您可以通过在环境变量中添加以下内容来更改堆大小:

  1. 环境变量名称:_JAVA_OPTIONS
  2. 环境变量值:-Xmx512M -Xms512M