ApplicationWorkerConfiguration

data class ApplicationWorkerConfiguration(val cpu: String, val disk: String? = null, val diskType: String? = null, val memory: String)

Constructors

Link copied to clipboard
constructor(cpu: String, disk: String? = null, diskType: String? = null, memory: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val cpu: String

Per worker CPU resource. vCPU is the only supported unit and specifying vCPU is optional.

Link copied to clipboard
val disk: String? = null

Per worker Disk resource. GB is the only supported unit and specifying GB is optional

Link copied to clipboard
val diskType: String? = null

Per worker DiskType resource. Shuffle optimized and Standard are only supported types and specifying diskType is optional

Link copied to clipboard

Per worker memory resource. GB is the only supported unit and specifying GB is optional.