org.apache.spark.deploy.yarn

YarnSparkHadoopUtil

object YarnSparkHadoopUtil

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

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 ANY_HOST: String

  7. val DEFAULT_NUMBER_EXECUTORS: Int

  8. val MEMORY_OVERHEAD_FACTOR: Double

  9. val MEMORY_OVERHEAD_MIN: Long

  10. val RM_REQUEST_PRIORITY: Priority

  11. def addPathToEnvironment(env: HashMap[String, String], key: String, value: String): Unit

    Add a path variable to the given environment map.

    Add a path variable to the given environment map. If the map already contains this key, append the value to the existing value instead.

  12. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  16. def escapeForShell(arg: String): String

    Escapes a string for inclusion in a command line executed by Yarn.

    Escapes a string for inclusion in a command line executed by Yarn. Yarn executes commands using either

    (Unix-based) bash -c "command arg1 arg2" and that means plain quoting doesn't really work. The argument is enclosed in single quotes and some key characters are escaped.

    (Windows-based) part of a .cmd file in which case windows escaping for each argument must be applied. Windows is quite lenient, however it is usually Java that causes trouble, needing to distinguish between arguments starting with '-' and class names. If arguments are surrounded by ' java takes the following string as is, hence an argument is mistakenly taken as a class name which happens to start with a '-'. The way to avoid this, is to surround nothing with a ', but instead with a ".

    arg

    A single argument.

    returns

    Argument quoted for execution via Yarn's generated shell script.

  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def get: YarnSparkHadoopUtil

  19. def getApplicationAclsForYarn(securityMgr: SecurityManager): Map[ApplicationAccessType, String]

  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def getInitialTargetExecutorNumber(conf: SparkConf, numExecutors: Int = DEFAULT_NUMBER_EXECUTORS): Int

    Getting the initial target number of executors depends on whether dynamic allocation is enabled.

    Getting the initial target number of executors depends on whether dynamic allocation is enabled. If not using dynamic allocation it gets the number of executors requested by the user.

  22. def hashCode(): Int

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

    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  27. def setEnvFromInputString(env: HashMap[String, String], inputString: String): Unit

    Set zero or more environment variables specified by the given input string.

    Set zero or more environment variables specified by the given input string. The input string is expected to take the form "KEY1=VAL1,KEY2=VAL2,KEY3=VAL3".

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

    Definition Classes
    AnyRef
  29. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped