Skip to content
Snippets Groups Projects
  1. Dec 14, 2013
  2. Dec 13, 2013
  3. Dec 12, 2013
    • Patrick Wendell's avatar
      Merge pull request #255 from ScrapCodes/scala-2.10 · 0aeb182b
      Patrick Wendell authored
      Disabled yarn 2.2 in sbt and mvn build and added a message in the sbt build.
      0aeb182b
    • Prashant Sharma's avatar
    • Patrick Wendell's avatar
      Merge pull request #254 from ScrapCodes/scala-2.10 · 2e89398e
      Patrick Wendell authored
      Scala 2.10 migration
      
      This PR migrates spark to scala 2.10.
      
      Summary of changes apart from scala 2.10 migration:
      (has no implications for user.)
      1. Migrated Akka to 2.2.3.
      
      Does not use remote death watch for it has a bug, where it tries to send message to dead node infinitely.
      
      Uses an indestructible actorsystem which tolerates errors only on executors.
      
      (Might be useful for user.)
      4. New configuration settings introduced:
      
      System.getProperty("spark.akka.heartbeat.pauses", "600")
      System.getProperty("spark.akka.failure-detector.threshold", "300.0")
      System.getProperty("spark.akka.heartbeat.interval", "1000")
      
      Defaults for these are fairly large to only disable Failure detector that comes with akka. The reason for doing so is we have our own failure detector like mechanism in place and then this is just an overhead on top of that + it leads to a lot of false positives. But with these properties it is possible to enable them. A good use case for enabling it could be when someone wants spark to be sensitive (in a controllable manner ofc.) to GC pauses/Network lags and quickly evict executors that experienced it. More information is included in configuration.md
      
      Once we have the SPARK-544 merged, I had like to deprecate atleast these akka properties and may be others too.
      
      This PR is duplicate of #221(where all the discussion happened.) for that one pointed to master this one points to scala-2.10 branch.
      2e89398e
  4. Dec 11, 2013
  5. Dec 10, 2013
  6. Dec 09, 2013
  7. Dec 08, 2013
  8. Dec 07, 2013
  9. Dec 06, 2013
Loading