aboutsummaryrefslogtreecommitdiff
path: root/bin/stop-slaves.sh
Commit message (Collapse)AuthorAgeFilesLines
* Address Matei's commentsAaron Davidson2013-10-051-2/+0
|
* Standalone Scheduler fault recoveryAaron Davidson2013-09-261-1/+1
| | | | | | | | | | | | | | | | | | | Implements a basic form of Standalone Scheduler fault recovery. In particular, this allows faults to be manually recovered from by means of restarting the Master process on the same machine. This is the majority of the code necessary for general fault tolerance, which will first elect a leader and then recover the Master state. In order to enable fault recovery, the Master will persist a small amount of state related to the registration of Workers and Applications to disk. If the Master is started and sees that this state is still around, it will enter Recovery mode, during which time it will not schedule any new Executors on Workers (but it does accept the registration of new Clients and Workers). At this point, the Master attempts to reconnect to all Workers and Client applications that were registered at the time of failure. After confirming either the existence or nonexistence of all such nodes (within a certain timeout), the Master will exit Recovery mode and resume normal scheduling.
* Initial work to rename package to org.apache.sparkMatei Zaharia2013-09-011-2/+2
|
* Add Apache license headers and LICENSE and NOTICE filesMatei Zaharia2013-07-161-0/+17
|
* added SPARK_WORKER_INSTANCES : allows spawning multiple worker ↵kalpit2013-03-261-1/+11
| | | | instances/processes on every slave machine
* Settings variables and bugfix for stop script.Denny2012-08-021-1/+1
|
* Spark standalone mode cluster scripts.Denny2012-08-011-0/+10
Heavily inspired by Hadoop cluster scripts ;-)