Update Application
emrserverless_update_application | R Documentation |
Updates a specified application¶
Description¶
Updates a specified application. An application has to be in a stopped or created state in order to be updated.
Usage¶
emrserverless_update_application(applicationId, clientToken,
initialCapacity, maximumCapacity, autoStartConfiguration,
autoStopConfiguration, networkConfiguration, architecture,
imageConfiguration, workerTypeSpecifications, interactiveConfiguration,
releaseLabel, runtimeConfiguration, monitoringConfiguration)
Arguments¶
applicationId
[required] The ID of the application to update.
clientToken
[required] The client idempotency token of the application to update. Its value must be unique for each request.
initialCapacity
The capacity to initialize when the application is updated.
maximumCapacity
The maximum capacity to allocate when the application is updated. This is cumulative across all workers at any given point in time during the lifespan of the application. No new resources will be created once any one of the defined limits is hit.
autoStartConfiguration
The configuration for an application to automatically start on job submission.
autoStopConfiguration
The configuration for an application to automatically stop after a certain amount of time being idle.
networkConfiguration
architecture
The CPU architecture of an application.
imageConfiguration
The image configuration to be used for all worker types. You can either set this parameter or
imageConfiguration
for each worker type inWorkerTypeSpecificationInput
.workerTypeSpecifications
The key-value pairs that specify worker type to
WorkerTypeSpecificationInput
. This parameter must contain all valid worker types for a Spark or Hive application. Valid worker types includeDriver
andExecutor
for Spark applications andHiveDriver
andTezTask
for Hive applications. You can either set image details in this parameter for each worker type, or inimageConfiguration
for all worker types.interactiveConfiguration
The interactive configuration object that contains new interactive use cases when the application is updated.
releaseLabel
The Amazon EMR release label for the application. You can change the release label to use a different release of Amazon EMR.
runtimeConfiguration
The Configuration specifications to use when updating an application. Each configuration consists of a classification and properties. This configuration is applied across all the job runs submitted under the application.
monitoringConfiguration
The configuration setting for monitoring.
Value¶
A list with the following syntax:
list(
application = list(
applicationId = "string",
name = "string",
arn = "string",
releaseLabel = "string",
type = "string",
state = "CREATING"|"CREATED"|"STARTING"|"STARTED"|"STOPPING"|"STOPPED"|"TERMINATED",
stateDetails = "string",
initialCapacity = list(
list(
workerCount = 123,
workerConfiguration = list(
cpu = "string",
memory = "string",
disk = "string",
diskType = "string"
)
)
),
maximumCapacity = list(
cpu = "string",
memory = "string",
disk = "string"
),
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
tags = list(
"string"
),
autoStartConfiguration = list(
enabled = TRUE|FALSE
),
autoStopConfiguration = list(
enabled = TRUE|FALSE,
idleTimeoutMinutes = 123
),
networkConfiguration = list(
subnetIds = list(
"string"
),
securityGroupIds = list(
"string"
)
),
architecture = "ARM64"|"X86_64",
imageConfiguration = list(
imageUri = "string",
resolvedImageDigest = "string"
),
workerTypeSpecifications = list(
list(
imageConfiguration = list(
imageUri = "string",
resolvedImageDigest = "string"
)
)
),
runtimeConfiguration = list(
list(
classification = "string",
properties = list(
"string"
),
configurations = list()
)
),
monitoringConfiguration = list(
s3MonitoringConfiguration = list(
logUri = "string",
encryptionKeyArn = "string"
),
managedPersistenceMonitoringConfiguration = list(
enabled = TRUE|FALSE,
encryptionKeyArn = "string"
),
cloudWatchLoggingConfiguration = list(
enabled = TRUE|FALSE,
logGroupName = "string",
logStreamNamePrefix = "string",
encryptionKeyArn = "string",
logTypes = list(
list(
"string"
)
)
),
prometheusMonitoringConfiguration = list(
remoteWriteUrl = "string"
)
),
interactiveConfiguration = list(
studioEnabled = TRUE|FALSE,
livyEndpointEnabled = TRUE|FALSE
)
)
)
Request syntax¶
svc$update_application(
applicationId = "string",
clientToken = "string",
initialCapacity = list(
list(
workerCount = 123,
workerConfiguration = list(
cpu = "string",
memory = "string",
disk = "string",
diskType = "string"
)
)
),
maximumCapacity = list(
cpu = "string",
memory = "string",
disk = "string"
),
autoStartConfiguration = list(
enabled = TRUE|FALSE
),
autoStopConfiguration = list(
enabled = TRUE|FALSE,
idleTimeoutMinutes = 123
),
networkConfiguration = list(
subnetIds = list(
"string"
),
securityGroupIds = list(
"string"
)
),
architecture = "ARM64"|"X86_64",
imageConfiguration = list(
imageUri = "string"
),
workerTypeSpecifications = list(
list(
imageConfiguration = list(
imageUri = "string"
)
)
),
interactiveConfiguration = list(
studioEnabled = TRUE|FALSE,
livyEndpointEnabled = TRUE|FALSE
),
releaseLabel = "string",
runtimeConfiguration = list(
list(
classification = "string",
properties = list(
"string"
),
configurations = list()
)
),
monitoringConfiguration = list(
s3MonitoringConfiguration = list(
logUri = "string",
encryptionKeyArn = "string"
),
managedPersistenceMonitoringConfiguration = list(
enabled = TRUE|FALSE,
encryptionKeyArn = "string"
),
cloudWatchLoggingConfiguration = list(
enabled = TRUE|FALSE,
logGroupName = "string",
logStreamNamePrefix = "string",
encryptionKeyArn = "string",
logTypes = list(
list(
"string"
)
)
),
prometheusMonitoringConfiguration = list(
remoteWriteUrl = "string"
)
)
)