create_application

EMRServerless.Client.create_application(**kwargs)

Creates an application.

See also: AWS API Documentation

Request Syntax

response = client.create_application(
    name='string',
    releaseLabel='string',
    type='string',
    clientToken='string',
    initialCapacity={
        'string': {
            'workerCount': 123,
            'workerConfiguration': {
                'cpu': 'string',
                'memory': 'string',
                'disk': 'string'
            }
        }
    },
    maximumCapacity={
        'cpu': 'string',
        'memory': 'string',
        'disk': 'string'
    },
    tags={
        'string': 'string'
    },
    autoStartConfiguration={
        'enabled': True|False
    },
    autoStopConfiguration={
        'enabled': True|False,
        'idleTimeoutMinutes': 123
    },
    networkConfiguration={
        'subnetIds': [
            'string',
        ],
        'securityGroupIds': [
            'string',
        ]
    },
    architecture='ARM64'|'X86_64',
    imageConfiguration={
        'imageUri': 'string'
    },
    workerTypeSpecifications={
        'string': {
            'imageConfiguration': {
                'imageUri': 'string'
            }
        }
    }
)
Parameters
  • name (string) -- The name of the application.
  • releaseLabel (string) --

    [REQUIRED]

    The EMR release associated with the application.

  • type (string) --

    [REQUIRED]

    The type of application you want to start, such as Spark or Hive.

  • clientToken (string) --

    [REQUIRED]

    The client idempotency token of the application to create. Its value must be unique for each request.

    This field is autopopulated if not provided.

  • initialCapacity (dict) --

    The capacity to initialize when the application is created.

    • (string) --
      • (dict) --

        The initial capacity configuration per worker.

        • workerCount (integer) -- [REQUIRED]

          The number of workers in the initial capacity configuration.

        • workerConfiguration (dict) --

          The resource configuration of the initial capacity configuration.

          • cpu (string) -- [REQUIRED]

            The CPU requirements for every worker instance of the worker type.

          • memory (string) -- [REQUIRED]

            The memory requirements for every worker instance of the worker type.

          • disk (string) --

            The disk requirements for every worker instance of the worker type.

  • maximumCapacity (dict) --

    The maximum capacity to allocate when the application is created. This is cumulative across all workers at any given point in time, not just when an application is created. No new resources will be created once any one of the defined limits is hit.

    • cpu (string) -- [REQUIRED]

      The maximum allowed CPU for an application.

    • memory (string) -- [REQUIRED]

      The maximum allowed resources for an application.

    • disk (string) --

      The maximum allowed disk for an application.

  • tags (dict) --

    The tags assigned to the application.

    • (string) --
      • (string) --
  • autoStartConfiguration (dict) --

    The configuration for an application to automatically start on job submission.

    • enabled (boolean) --

      Enables the application to automatically start on job submission. Defaults to true.

  • autoStopConfiguration (dict) --

    The configuration for an application to automatically stop after a certain amount of time being idle.

    • enabled (boolean) --

      Enables the application to automatically stop after a certain amount of time being idle. Defaults to true.

    • idleTimeoutMinutes (integer) --

      The amount of idle time in minutes after which your application will automatically stop. Defaults to 15 minutes.

  • networkConfiguration (dict) --

    The network configuration for customer VPC connectivity.

    • subnetIds (list) --

      The array of subnet Ids for customer VPC connectivity.

      • (string) --
    • securityGroupIds (list) --

      The array of security group Ids for customer VPC connectivity.

      • (string) --
  • architecture (string) -- The CPU architecture of an application.
  • imageConfiguration (dict) --

    The image configuration for all worker types. You can either set this parameter or imageConfiguration for each worker type in workerTypeSpecifications .

    • imageUri (string) --

      The URI of an image in the Amazon ECR registry. This field is required when you create a new application. If you leave this field blank in an update, Amazon EMR will remove the image configuration.

  • workerTypeSpecifications (dict) --

    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 include Driver and Executor for Spark applications and HiveDriver and TezTask for Hive applications. You can either set image details in this parameter for each worker type, or in imageConfiguration for all worker types.

    • (string) --
      • (dict) --

        The specifications for a worker type.

        • imageConfiguration (dict) --

          The image configuration for a worker type.

          • imageUri (string) --

            The URI of an image in the Amazon ECR registry. This field is required when you create a new application. If you leave this field blank in an update, Amazon EMR will remove the image configuration.

Return type

dict

Returns

Response Syntax

{
    'applicationId': 'string',
    'name': 'string',
    'arn': 'string'
}

Response Structure

  • (dict) --

    • applicationId (string) --

      The output contains the application ID.

    • name (string) --

      The output contains the name of the application.

    • arn (string) --

      The output contains the ARN of the application.

Exceptions

  • EMRServerless.Client.exceptions.ValidationException
  • EMRServerless.Client.exceptions.ResourceNotFoundException
  • EMRServerless.Client.exceptions.InternalServerException
  • EMRServerless.Client.exceptions.ConflictException