How spark handles object

前端 未结 2 1671
旧时难觅i
旧时难觅i 2021-01-02 13:19

To test the Serialization exception in spark I wrote a task in 2 ways.
First way:

package examples
import org.apache.spark.SparkConf
import org.apache.         


        
相关标签:
2条回答
  • 2021-01-02 13:32

    In order for Spark to distribute a given operation, the function used in the operation needs to be serialized. Before serialization, these functions pass through a complex process appropriately called "ClosureCleaner".

    The intention is to "cut off" closures from their context in order to reduce the size of the object graph needed to be serialized and reduce the risk of serialization issues in the process. In other words, ensure that only the code needed to execute the function is serialized and sent for deserialization and execution "at the other side"

    During that process, the closure is also evaluated to be Serializable to be proactive about detecting serialization issues at runtime (SparkContext#clean).

    That code is dense and complex so it's hard to find the right code path leading to this case.

    Intuitively, what's happening is that when the ClosureCleaner finds:

    val result = rdd.map{elem => 
      funcs.func_1(elem)
    } 
    

    It evaluates the inner members of the closure to be from an object that can be recreated and there are no further references, so the cleaned closure only contains {elem => funcs.func_1(elem)} which can be serialized by the JavaSerializer.

    Instead, when the closure cleaner evaluates:

    val handler = funcs
    val result = rdd.map(elem => {
      handler.func_1(elem)
    })
    

    It finds that the closure has a reference to $outer (handler), hence it inspects the outer scope and adds the and variable instance to the cleaned closure. We could imagine the resulting cleaned closure to be something of this shape (this is for illustrative purposes only):

    {elem => 
      val handler = funcs
      handler.func_1(elem)
    } 
    

    When the closure is tested for serialization, it fails to serialize. Per JVM serialization rules, an object is serializable if recursively all its members are serializable. In this case handler references a non-serializable object and the check fails.

    0 讨论(0)
  • 2021-01-02 13:40

    When you run code in an RDD closure (map, filter, etc...), everything necessary to execute that code will be packaged up, serialized, and sent to the executors to be run. Any objects that are referenced (or whose fields are referenced) will be serialized in this task, and this is where you'll sometimes get a NotSerializableException.

    Your use case is a little more complicated, though, and involves the scala compiler. Typically, calling a function on a scala object is the equivalent of calling a java static method. That object never really exists -- it's basically like writing the code inline. However, if you assign an object to a variable, then you're actually creating a reference to that object in memory, and the object behaves more like a class, and can have serialization issues.

    scala> object A { 
      def foo() { 
        println("bar baz")
      }
    }
    defined module A
    
    scala> A.foo()  // static method
    bar baz
    
    scala> val a = A  // now we're actually assigning a memory location
    a: A.type = A$@7e0babb1
    
    scala> a.foo()  // dereferences a before calling foo
    bar baz
    
    0 讨论(0)
提交回复
热议问题