cc.factorie.util

SSHActorExecutor

class SSHActorExecutor extends Executor

An Executor which runs jobs from a pool of machines via ssh. It assumes that private keys are properly set up.

Each machine will cd into the specified directory and start a JVM which will run the function evaluateParameters in the class whose name is passed.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SSHActorExecutor
  2. Executor
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SSHActorExecutor(user: String, machines: Seq[String], directory: String, className: String, memory: Int, timeoutMinutes: Int)

    user

    The username

    machines

    The list of machines on which to ssh

    directory

    The directory to "cd" in each machine

    className

    The class whose main function the slaves will run. Needs to be an instance of HyperparameterMain

    memory

    How much memory to give each slave JVM, in gigabytes

    timeoutMinutes

    The timeout for the SSH commands

Type Members

  1. case class ExecuteJob(args: String, jobId: Int) extends Product with Serializable

  2. class SSHActor extends Actor

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val actors: IndexedSeq[ActorRef]

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. val classpath: String

    Definition Classes
    Executor
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. val customConf: Config

  11. val date: String

  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  14. def execute(args: Array[String]): Future[Double]

    Definition Classes
    SSHActorExecutorExecutor
  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. var job: Int

  20. val logPrefix: String

  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. def serializeArgs(args: Array[String]): String

    Definition Classes
    Executor
  25. def shutdown(): Unit

  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  27. val system: ActorSystem

  28. def toString(): String

    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Executor

Inherited from AnyRef

Inherited from Any

Ungrouped