GdcSparkApplicationSparkRApplicationConfig

data class GdcSparkApplicationSparkRApplicationConfig(val archiveUris: List<String>? = null, val args: List<String>? = null, val fileUris: List<String>? = null, val mainRFileUri: String)

Constructors

constructor(archiveUris: List<String>? = null, args: List<String>? = null, fileUris: List<String>? = null, mainRFileUri: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val archiveUris: List<String>? = null

HCFS URIs of archives to be extracted into the working directory of each executor. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.

Link copied to clipboard
val args: List<String>? = null

The arguments to pass to the driver. Do not include arguments, such as --conf, that can be set as job properties, since a collision may occur that causes an incorrect job submission.

Link copied to clipboard
val fileUris: List<String>? = null

HCFS URIs of files to be placed in the working directory of each executor. Useful for naively parallel tasks.

Link copied to clipboard

The HCFS URI of the main R file to use as the driver. Must be a .R file.