Skip to content
Snippets Groups Projects
  1. Nov 24, 2013
  2. Nov 23, 2013
  3. Nov 21, 2013
  4. Nov 20, 2013
  5. Nov 19, 2013
  6. Nov 17, 2013
  7. Nov 16, 2013
    • Matei Zaharia's avatar
      Merge pull request #178 from hsaputra/simplecleanupcode · 1b5b3583
      Matei Zaharia authored
      Simple cleanup on Spark's Scala code
      
      Simple cleanup on Spark's Scala code while testing some modules:
      -) Remove some of unused imports as I found them
      -) Remove ";" in the imports statements
      -) Remove () at the end of method calls like size that does not have size effect.
      1b5b3583
  8. Nov 15, 2013
    • Henry Saputra's avatar
      Simple cleanup on Spark's Scala code while testing core and yarn modules: · c33f8020
      Henry Saputra authored
      -) Remove some of unused imports as I found them
      -) Remove ";" in the imports statements
      -) Remove () at the end of method call like size that does not have size effect.
      c33f8020
    • Matei Zaharia's avatar
      Merge pull request #173 from kayousterhout/scheduler_hang · 96e0fb46
      Matei Zaharia authored
      Fix bug where scheduler could hang after task failure.
      
      When a task fails, we need to call reviveOffers() so that the
      task can be rescheduled on a different machine. In the current code,
      the state in ClusterTaskSetManager indicating which tasks are
      pending may be updated after revive offers is called (there's a
      race condition here), so when revive offers is called, the task set
      manager does not yet realize that there are failed tasks that need
      to be relaunched.
      
      This isn't currently unit tested but will be once my pull request for
      merging the cluster and local schedulers goes in -- at which point
      many more of the unit tests will exercise the code paths through
      the cluster scheduler (currently the failure test suite uses the local
      scheduler, which is why we didn't see this bug before).
      96e0fb46
  9. Nov 14, 2013
Loading