Github user aarondav commented on a diff in the pull request:

    https://github.com/apache/spark/pull/771#discussion_r19162135
  
    --- Diff: 
core/src/main/scala/org/apache/spark/deploy/master/ZooKeeperPersistenceEngine.scala
 ---
    @@ -19,72 +19,54 @@ package org.apache.spark.deploy.master
     
     import scala.collection.JavaConversions._
     
    -import akka.serialization.Serialization
     import org.apache.curator.framework.CuratorFramework
     import org.apache.zookeeper.CreateMode
     
     import org.apache.spark.{Logging, SparkConf}
    +import org.apache.spark.serializer.Serializer
    +import java.nio.ByteBuffer
     
    -class ZooKeeperPersistenceEngine(serialization: Serialization, conf: 
SparkConf)
    +import scala.reflect.ClassTag
    +
    +
    +private[spark] class ZooKeeperPersistenceEngine(val serialization: 
Serializer, conf: SparkConf)
       extends PersistenceEngine
       with Logging
     {
       val WORKING_DIR = conf.get("spark.deploy.zookeeper.dir", "/spark") + 
"/master_status"
       val zk: CuratorFramework = SparkCuratorUtil.newClient(conf)
     
    -  SparkCuratorUtil.mkdir(zk, WORKING_DIR)
    -
    -  override def addApplication(app: ApplicationInfo) {
    -    serializeIntoFile(WORKING_DIR + "/app_" + app.id, app)
    -  }
    +  val serializer = serialization.newInstance()
     
    -  override def removeApplication(app: ApplicationInfo) {
    -    zk.delete().forPath(WORKING_DIR + "/app_" + app.id)
    -  }
    +  SparkCuratorUtil.mkdir(zk, WORKING_DIR)
     
    -  override def addDriver(driver: DriverInfo) {
    -    serializeIntoFile(WORKING_DIR + "/driver_" + driver.id, driver)
    -  }
     
    -  override def removeDriver(driver: DriverInfo) {
    -    zk.delete().forPath(WORKING_DIR + "/driver_" + driver.id)
    +  override def persist(name: String, obj: Object): Unit = {
    +    serializeIntoFile(WORKING_DIR + "/" + name, obj)
       }
     
    -  override def addWorker(worker: WorkerInfo) {
    -    serializeIntoFile(WORKING_DIR + "/worker_" + worker.id, worker)
    +  override def unpersist(name: String): Unit = {
    +    zk.delete().forPath(WORKING_DIR + "/" + name)
       }
     
    -  override def removeWorker(worker: WorkerInfo) {
    -    zk.delete().forPath(WORKING_DIR + "/worker_" + worker.id)
    +  override def read[T: ClassTag](name: String) = {
    --- End diff --
    
    let's rename this "prefix"


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to