Amazon Elastic MapReduce

2014/10/16 - Amazon Elastic MapReduce - 17 new api methods

SetVisibleToAllUsers (new) Link ¶

Sets whether all AWS Identity and Access Management (IAM) users under your account can access the specified job flows. This action works on running job flows. You can also set the visibility of a job flow when you launch it using the VisibleToAllUsers parameter of RunJobFlow. The SetVisibleToAllUsers action can be called only by an IAM user who created the job flow or the AWS account that owns the job flow.

Request Syntax

client.set_visible_to_all_users(
    JobFlowIds=[
        'string',
    ],
    VisibleToAllUsers=True|False
)
type JobFlowIds

list

param JobFlowIds

[REQUIRED]

Identifiers of the job flows to receive the new visibility setting.

  • (string) --

type VisibleToAllUsers

boolean

param VisibleToAllUsers

[REQUIRED]

Whether the specified job flows are visible to all IAM users of the AWS account associated with the job flow. If this value is set to True, all IAM users of that AWS account can view and, if they have the proper IAM policy permissions set, manage the job flows. If it is set to False, only the IAM user that created a job flow can view and manage it.

returns

None

DescribeCluster (new) Link ¶

Provides cluster-level details including status, hardware and software configuration, VPC settings, and so on. For information about the cluster steps, see ListSteps.

Request Syntax

client.describe_cluster(
    ClusterId='string'
)
type ClusterId

string

param ClusterId

[REQUIRED]

The identifier of the cluster to describe.

rtype

dict

returns

Response Syntax

{
    'Cluster': {
        'Id': 'string',
        'Name': 'string',
        'Status': {
            'State': 'STARTING'|'BOOTSTRAPPING'|'RUNNING'|'WAITING'|'TERMINATING'|'TERMINATED'|'TERMINATED_WITH_ERRORS',
            'StateChangeReason': {
                'Code': 'INTERNAL_ERROR'|'VALIDATION_ERROR'|'INSTANCE_FAILURE'|'BOOTSTRAP_FAILURE'|'USER_REQUEST'|'STEP_FAILURE'|'ALL_STEPS_COMPLETED',
                'Message': 'string'
            },
            'Timeline': {
                'CreationDateTime': datetime(2015, 1, 1),
                'ReadyDateTime': datetime(2015, 1, 1),
                'EndDateTime': datetime(2015, 1, 1)
            }
        },
        'Ec2InstanceAttributes': {
            'Ec2KeyName': 'string',
            'Ec2SubnetId': 'string',
            'Ec2AvailabilityZone': 'string',
            'IamInstanceProfile': 'string'
        },
        'LogUri': 'string',
        'RequestedAmiVersion': 'string',
        'RunningAmiVersion': 'string',
        'AutoTerminate': True|False,
        'TerminationProtected': True|False,
        'VisibleToAllUsers': True|False,
        'Applications': [
            {
                'Name': 'string',
                'Version': 'string',
                'Args': [
                    'string',
                ],
                'AdditionalInfo': {
                    'string': 'string'
                }
            },
        ],
        'Tags': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        'ServiceRole': 'string'
    }
}

Response Structure

  • (dict) --

    This output contains the description of the cluster.

    • Cluster (dict) --

      This output contains the details for the requested cluster.

      • Id (string) --

        The unique identifier for the cluster.

      • Name (string) --

        The name of the cluster.

      • Status (dict) --

        The current status details about the cluster.

        • State (string) --

          The current state of the cluster.

        • StateChangeReason (dict) --

          The reason for the cluster status change.

          • Code (string) --

            The programmatic code for the state change reason.

          • Message (string) --

            The descriptive message for the state change reason.

        • Timeline (dict) --

          A timeline that represents the status of a cluster over the lifetime of the cluster.

          • CreationDateTime (datetime) --

            The creation date and time of the cluster.

          • ReadyDateTime (datetime) --

            The date and time when the cluster was ready to execute steps.

          • EndDateTime (datetime) --

            The date and time when the cluster was terminated.

      • Ec2InstanceAttributes (dict) --

        Provides information about the EC2 instances in a cluster grouped by category. For example, key name, subnet ID, IAM instance profile, and so on.

        • Ec2KeyName (string) --

          The name of the Amazon EC2 key pair to use when connecting with SSH into the master node as a user named "hadoop".

        • Ec2SubnetId (string) --

          To launch the job flow in Amazon VPC, set this parameter to the identifier of the Amazon VPC subnet where you want the job flow to launch. If you do not specify this value, the job flow is launched in the normal AWS cloud, outside of a VPC.

          Amazon VPC currently does not support cluster compute quadruple extra large (cc1.4xlarge) instances. Thus, you cannot specify the cc1.4xlarge instance type for nodes of a job flow launched in a VPC.

        • Ec2AvailabilityZone (string) --

          The Availability Zone in which the cluster will run.

        • IamInstanceProfile (string) --

          The IAM role that was specified when the job flow was launched. The EC2 instances of the job flow assume this role.

      • LogUri (string) --

        The path to the Amazon S3 location where logs for this cluster are stored.

      • RequestedAmiVersion (string) --

        The AMI version requested for this cluster.

      • RunningAmiVersion (string) --

        The AMI version running on this cluster. This differs from the requested version only if the requested version is a meta version, such as "latest".

      • AutoTerminate (boolean) --

        Specifies whether the cluster should terminate after completing all steps.

      • TerminationProtected (boolean) --

        Indicates whether Amazon EMR will lock the cluster to prevent the EC2 instances from being terminated by an API call or user intervention, or in the event of a cluster error.

      • VisibleToAllUsers (boolean) --

        Indicates whether the job flow is visible to all IAM users of the AWS account associated with the job flow. If this value is set to true , all IAM users of that AWS account can view and manage the job flow if they have the proper policy permissions set. If this value is false , only the IAM user that created the cluster can view and manage it. This value can be changed using the SetVisibleToAllUsers action.

      • Applications (list) --

        The applications installed on this cluster.

        • (dict) --

          An application is any Amazon or third-party software that you can add to the cluster. This structure contains a list of strings that indicates the software to use with the cluster and accepts a user argument list. Amazon EMR accepts and forwards the argument list to the corresponding installation script as bootstrap action argument. For more information, see Launch a Job Flow on the MapR Distribution for Hadoop. Currently supported values are:

          • "mapr-m3" - launch the job flow using MapR M3 Edition.

          • "mapr-m5" - launch the job flow using MapR M5 Edition.

          • "mapr" with the user arguments specifying "--edition,m3" or "--edition,m5" - launch the job flow using MapR M3 or M5 Edition, respectively.

          • Name (string) --

            The name of the application.

          • Version (string) --

            The version of the application.

          • Args (list) --

            Arguments for Amazon EMR to pass to the application.

            • (string) --

          • AdditionalInfo (dict) --

            This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.

            • (string) --

              • (string) --

      • Tags (list) --

        A list of tags associated with a cluster.

        • (dict) --

          A key/value pair containing user-defined metadata that you can associate with an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clusters to track your Amazon EMR resource allocation costs. For more information, see Tagging Amazon EMR Resources.

      • ServiceRole (string) --

        The IAM role that will be assumed by the Amazon EMR service to access AWS resources on your behalf.

TerminateJobFlows (new) Link ¶

TerminateJobFlows shuts a list of job flows down. When a job flow is shut down, any step not yet completed is canceled and the EC2 instances on which the job flow is running are stopped. Any log files not already saved are uploaded to Amazon S3 if a LogUri was specified when the job flow was created.

The call to TerminateJobFlows is asynchronous. Depending on the configuration of the job flow, it may take up to 5-20 minutes for the job flow to completely terminate and release allocated resources, such as Amazon EC2 instances.

Request Syntax

client.terminate_job_flows(
    JobFlowIds=[
        'string',
    ]
)
type JobFlowIds

list

param JobFlowIds

[REQUIRED]

A list of job flows to be shutdown.

  • (string) --

returns

None

ListBootstrapActions (new) Link ¶

Provides information about the bootstrap actions associated with a cluster.

Request Syntax

client.list_bootstrap_actions(
    ClusterId='string',
    Marker='string'
)
type ClusterId

string

param ClusterId

[REQUIRED]

The cluster identifier for the bootstrap actions to list .

type Marker

string

param Marker

The pagination token that indicates the next set of results to retrieve .

rtype

dict

returns

Response Syntax

{
    'BootstrapActions': [
        {
            'Name': 'string',
            'ScriptPath': 'string',
            'Args': [
                'string',
            ]
        },
    ],
    'Marker': 'string'
}

Response Structure

  • (dict) --

    This output contains the boostrap actions detail .

    • BootstrapActions (list) --

      The bootstrap actions associated with the cluster .

      • (dict) --

        An entity describing an executable that runs on a cluster.

        • Name (string) --

          The name of the command.

        • ScriptPath (string) --

          The Amazon S3 location of the command script.

        • Args (list) --

          Arguments for Amazon EMR to pass to the command for execution.

          • (string) --

    • Marker (string) --

      The pagination token that indicates the next set of results to retrieve .

ModifyInstanceGroups (new) Link ¶

ModifyInstanceGroups modifies the number of nodes and configuration settings of an instance group. The input parameters include the new target instance count for the group and the instance group ID. The call will either succeed or fail atomically.

Request Syntax

client.modify_instance_groups(
    InstanceGroups=[
        {
            'InstanceGroupId': 'string',
            'InstanceCount': 123,
            'EC2InstanceIdsToTerminate': [
                'string',
            ]
        },
    ]
)
type InstanceGroups

list

param InstanceGroups

Instance groups to change.

  • (dict) --

    Modify an instance group size.

    • InstanceGroupId (string) -- [REQUIRED]

      Unique ID of the instance group to expand or shrink.

    • InstanceCount (integer) --

      Target size for the instance group.

    • EC2InstanceIdsToTerminate (list) --

      The EC2 InstanceIds to terminate. For advanced users only. Once you terminate the instances, the instance group will not return to its original requested size.

      • (string) --

returns

None

RemoveTags (new) Link ¶

Removes tags from an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clusters to track your Amazon EMR resource allocation costs. For more information, see Tagging Amazon EMR Resources.

The following example removes the stack tag with value Prod from a cluster:

Request Syntax

client.remove_tags(
    ResourceId='string',
    TagKeys=[
        'string',
    ]
)
type ResourceId

string

param ResourceId

[REQUIRED]

The Amazon EMR resource identifier from which tags will be removed. This value must be a cluster identifier.

type TagKeys

list

param TagKeys

[REQUIRED]

A list of tag keys to remove from a resource.

  • (string) --

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

    This output indicates the result of removing tags from a resource.

RunJobFlow (new) Link ¶

RunJobFlow creates and starts running a new job flow. The job flow will run the steps specified. Once the job flow completes, the cluster is stopped and the HDFS partition is lost. To prevent loss of data, configure the last step of the job flow to store results in Amazon S3. If the JobFlowInstancesConfig KeepJobFlowAliveWhenNoSteps parameter is set to TRUE , the job flow will transition to the WAITING state rather than shutting down once the steps have completed.

For additional protection, you can set the JobFlowInstancesConfig TerminationProtected parameter to TRUE to lock the job flow and prevent it from being terminated by API call, user intervention, or in the event of a job flow error.

A maximum of 256 steps are allowed in each job flow.

If your job flow is long-running (such as a Hive data warehouse) or complex, you may require more than 256 steps to process your data. You can bypass the 256-step limitation in various ways, including using the SSH shell to connect to the master node and submitting queries directly to the software running on the master node, such as Hive and Hadoop. For more information on how to do this, go to Add More than 256 Steps to a Job Flow in the Amazon Elastic MapReduce Developer's Guide .

For long running job flows, we recommend that you periodically store your results.

Request Syntax

client.run_job_flow(
    Name='string',
    LogUri='string',
    AdditionalInfo='string',
    AmiVersion='string',
    Instances={
        'MasterInstanceType': 'string',
        'SlaveInstanceType': 'string',
        'InstanceCount': 123,
        'InstanceGroups': [
            {
                'Name': 'string',
                'Market': 'ON_DEMAND'|'SPOT',
                'InstanceRole': 'MASTER'|'CORE'|'TASK',
                'BidPrice': 'string',
                'InstanceType': 'string',
                'InstanceCount': 123
            },
        ],
        'Ec2KeyName': 'string',
        'Placement': {
            'AvailabilityZone': 'string'
        },
        'KeepJobFlowAliveWhenNoSteps': True|False,
        'TerminationProtected': True|False,
        'HadoopVersion': 'string',
        'Ec2SubnetId': 'string'
    },
    Steps=[
        {
            'Name': 'string',
            'ActionOnFailure': 'TERMINATE_JOB_FLOW'|'TERMINATE_CLUSTER'|'CANCEL_AND_WAIT'|'CONTINUE',
            'HadoopJarStep': {
                'Properties': [
                    {
                        'Key': 'string',
                        'Value': 'string'
                    },
                ],
                'Jar': 'string',
                'MainClass': 'string',
                'Args': [
                    'string',
                ]
            }
        },
    ],
    BootstrapActions=[
        {
            'Name': 'string',
            'ScriptBootstrapAction': {
                'Path': 'string',
                'Args': [
                    'string',
                ]
            }
        },
    ],
    SupportedProducts=[
        'string',
    ],
    NewSupportedProducts=[
        {
            'Name': 'string',
            'Args': [
                'string',
            ]
        },
    ],
    VisibleToAllUsers=True|False,
    JobFlowRole='string',
    ServiceRole='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
type Name

string

param Name

[REQUIRED]

The name of the job flow.

type LogUri

string

param LogUri

The location in Amazon S3 to write the log files of the job flow. If a value is not provided, logs are not created.

type AdditionalInfo

string

param AdditionalInfo

A JSON string for selecting additional features.

type AmiVersion

string

param AmiVersion

The version of the Amazon Machine Image (AMI) to use when launching Amazon EC2 instances in the job flow. The following values are valid:

  • "latest" (uses the latest AMI)

  • The version number of the AMI to use, for example, "2.0"

If the AMI supports multiple versions of Hadoop (for example, AMI 1.0 supports both Hadoop 0.18 and 0.20) you can use the JobFlowInstancesConfig HadoopVersion parameter to modify the version of Hadoop from the defaults shown above.

For details about the AMI versions currently supported by Amazon Elastic MapReduce, go to AMI Versions Supported in Elastic MapReduce in the Amazon Elastic MapReduce Developer's Guide.

type Instances

dict

param Instances

[REQUIRED]

A specification of the number and type of Amazon EC2 instances on which to run the job flow.

  • MasterInstanceType (string) --

    The EC2 instance type of the master node.

  • SlaveInstanceType (string) --

    The EC2 instance type of the slave nodes.

  • InstanceCount (integer) --

    The number of Amazon EC2 instances used to execute the job flow.

  • InstanceGroups (list) --

    Configuration for the job flow's instance groups.

    • (dict) --

      Configuration defining a new instance group.

      • Name (string) --

        Friendly name given to the instance group.

      • Market (string) --

        Market type of the Amazon EC2 instances used to create a cluster node.

      • InstanceRole (string) -- [REQUIRED]

        The role of the instance group in the cluster.

      • BidPrice (string) --

        Bid price for each Amazon EC2 instance in the instance group when launching nodes as Spot Instances, expressed in USD.

      • InstanceType (string) -- [REQUIRED]

        The Amazon EC2 instance type for all instances in the instance group.

      • InstanceCount (integer) -- [REQUIRED]

        Target number of instances for the instance group.

  • Ec2KeyName (string) --

    The name of the Amazon EC2 key pair that can be used to ssh to the master node as the user called "hadoop."

  • Placement (dict) --

    The Availability Zone the job flow will run in.

    • AvailabilityZone (string) -- [REQUIRED]

      The Amazon EC2 Availability Zone for the job flow.

  • KeepJobFlowAliveWhenNoSteps (boolean) --

    Specifies whether the job flow should terminate after completing all steps.

  • TerminationProtected (boolean) --

    Specifies whether to lock the job flow to prevent the Amazon EC2 instances from being terminated by API call, user intervention, or in the event of a job flow error.

  • HadoopVersion (string) --

    The Hadoop version for the job flow. Valid inputs are "0.18", "0.20", or "0.20.205". If you do not set this value, the default of 0.18 is used, unless the AmiVersion parameter is set in the RunJobFlow call, in which case the default version of Hadoop for that AMI version is used.

  • Ec2SubnetId (string) --

    To launch the job flow in Amazon Virtual Private Cloud (Amazon VPC), set this parameter to the identifier of the Amazon VPC subnet where you want the job flow to launch. If you do not specify this value, the job flow is launched in the normal Amazon Web Services cloud, outside of an Amazon VPC.

    Amazon VPC currently does not support cluster compute quadruple extra large (cc1.4xlarge) instances. Thus you cannot specify the cc1.4xlarge instance type for nodes of a job flow launched in a Amazon VPC.

type Steps

list

param Steps

A list of steps to be executed by the job flow.

  • (dict) --

    Specification of a job flow step.

    • Name (string) -- [REQUIRED]

      The name of the job flow step.

    • ActionOnFailure (string) --

      The action to take if the job flow step fails.

    • HadoopJarStep (dict) -- [REQUIRED]

      The JAR file used for the job flow step.

      • Properties (list) --

        A list of Java properties that are set when the step runs. You can use these properties to pass key value pairs to your main function.

        • (dict) --

          A key value pair.

          • Key (string) --

            The unique identifier of a key value pair.

          • Value (string) --

            The value part of the identified key.

      • Jar (string) -- [REQUIRED]

        A path to a JAR file run during the step.

      • MainClass (string) --

        The name of the main class in the specified Java file. If not specified, the JAR file should specify a Main-Class in its manifest file.

      • Args (list) --

        A list of command line arguments passed to the JAR file's main function when executed.

        • (string) --

type BootstrapActions

list

param BootstrapActions

A list of bootstrap actions that will be run before Hadoop is started on the cluster nodes.

  • (dict) --

    Configuration of a bootstrap action.

    • Name (string) -- [REQUIRED]

      The name of the bootstrap action.

    • ScriptBootstrapAction (dict) -- [REQUIRED]

      The script run by the bootstrap action.

      • Path (string) -- [REQUIRED]

        Location of the script to run during a bootstrap action. Can be either a location in Amazon S3 or on a local file system.

      • Args (list) --

        A list of command line arguments to pass to the bootstrap action script.

        • (string) --

type SupportedProducts

list

param SupportedProducts

A list of strings that indicates third-party software to use with the job flow. For more information, go to Use Third Party Applications with Amazon EMR. Currently supported values are:

  • "mapr-m3" - launch the job flow using MapR M3 Edition.

  • "mapr-m5" - launch the job flow using MapR M5 Edition.

  • (string) --

type NewSupportedProducts

list

param NewSupportedProducts

A list of strings that indicates third-party software to use with the job flow that accepts a user argument list. EMR accepts and forwards the argument list to the corresponding installation script as bootstrap action arguments. For more information, see Launch a Job Flow on the MapR Distribution for Hadoop. Currently supported values are:

  • "mapr-m3" - launch the job flow using MapR M3 Edition.

  • "mapr-m5" - launch the job flow using MapR M5 Edition.

  • "mapr" with the user arguments specifying "--edition,m3" or "--edition,m5" - launch the job flow using MapR M3 or M5 Edition respectively.

  • (dict) --

    The list of supported product configurations which allow user-supplied arguments. EMR accepts these arguments and forwards them to the corresponding installation script as bootstrap action arguments.

    • Name (string) --

      The name of the product configuration.

    • Args (list) --

      The list of user-supplied arguments.

      • (string) --

type VisibleToAllUsers

boolean

param VisibleToAllUsers

Whether the job flow is visible to all IAM users of the AWS account associated with the job flow. If this value is set to true , all IAM users of that AWS account can view and (if they have the proper policy permissions set) manage the job flow. If it is set to false , only the IAM user that created the job flow can view and manage it.

type JobFlowRole

string

param JobFlowRole

An IAM role for the job flow. The EC2 instances of the job flow assume this role. The default role is EMRJobflowDefault . In order to use the default role, you must have already created it using the CLI.

type ServiceRole

string

param ServiceRole

The IAM role that will be assumed by the Amazon EMR service to access AWS resources on your behalf.

type Tags

list

param Tags

A list of tags to associate with a cluster and propagate to Amazon EC2 instances.

  • (dict) --

    A key/value pair containing user-defined metadata that you can associate with an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clusters to track your Amazon EMR resource allocation costs. For more information, see Tagging Amazon EMR Resources.

rtype

dict

returns

Response Syntax

{
    'JobFlowId': 'string'
}

Response Structure

  • (dict) --

    The result of the RunJobFlow operation.

    • JobFlowId (string) --

      An unique identifier for the job flow.

SetTerminationProtection (new) Link ¶

SetTerminationProtection locks a job flow so the Amazon EC2 instances in the cluster cannot be terminated by user intervention, an API call, or in the event of a job-flow error. The cluster still terminates upon successful completion of the job flow. Calling SetTerminationProtection on a job flow is analogous to calling the Amazon EC2 DisableAPITermination API on all of the EC2 instances in a cluster.

SetTerminationProtection is used to prevent accidental termination of a job flow and to ensure that in the event of an error, the instances will persist so you can recover any data stored in their ephemeral instance storage.

To terminate a job flow that has been locked by setting SetTerminationProtection to true , you must first unlock the job flow by a subsequent call to SetTerminationProtection in which you set the value to false .

For more information, go to Protecting a Job Flow from Termination in the Amazon Elastic MapReduce Developer's Guide.

Request Syntax

client.set_termination_protection(
    JobFlowIds=[
        'string',
    ],
    TerminationProtected=True|False
)
type JobFlowIds

list

param JobFlowIds

[REQUIRED]

A list of strings that uniquely identify the job flows to protect. This identifier is returned by RunJobFlow and can also be obtained from DescribeJobFlows .

  • (string) --

type TerminationProtected

boolean

param TerminationProtected

[REQUIRED]

A Boolean that indicates whether to protect the job flow and prevent the Amazon EC2 instances in the cluster from shutting down due to API calls, user intervention, or job-flow error.

returns

None

AddInstanceGroups (new) Link ¶

AddInstanceGroups adds an instance group to a running cluster.

Request Syntax

client.add_instance_groups(
    InstanceGroups=[
        {
            'Name': 'string',
            'Market': 'ON_DEMAND'|'SPOT',
            'InstanceRole': 'MASTER'|'CORE'|'TASK',
            'BidPrice': 'string',
            'InstanceType': 'string',
            'InstanceCount': 123
        },
    ],
    JobFlowId='string'
)
type InstanceGroups

list

param InstanceGroups

[REQUIRED]

Instance Groups to add.

  • (dict) --

    Configuration defining a new instance group.

    • Name (string) --

      Friendly name given to the instance group.

    • Market (string) --

      Market type of the Amazon EC2 instances used to create a cluster node.

    • InstanceRole (string) -- [REQUIRED]

      The role of the instance group in the cluster.

    • BidPrice (string) --

      Bid price for each Amazon EC2 instance in the instance group when launching nodes as Spot Instances, expressed in USD.

    • InstanceType (string) -- [REQUIRED]

      The Amazon EC2 instance type for all instances in the instance group.

    • InstanceCount (integer) -- [REQUIRED]

      Target number of instances for the instance group.

type JobFlowId

string

param JobFlowId

[REQUIRED]

Job flow in which to add the instance groups.

rtype

dict

returns

Response Syntax

{
    'JobFlowId': 'string',
    'InstanceGroupIds': [
        'string',
    ]
}

Response Structure

  • (dict) --

    Output from an AddInstanceGroups call.

    • JobFlowId (string) --

      The job flow ID in which the instance groups are added.

    • InstanceGroupIds (list) --

      Instance group IDs of the newly created instance groups.

      • (string) --

DescribeJobFlows (new) Link ¶

This API is deprecated and will eventually be removed. We recommend you use ListClusters, DescribeCluster, ListSteps, ListInstanceGroups and ListBootstrapActions instead.

DescribeJobFlows returns a list of job flows that match all of the supplied parameters. The parameters can include a list of job flow IDs, job flow states, and restrictions on job flow creation date and time.

Regardless of supplied parameters, only job flows created within the last two months are returned.

If no parameters are supplied, then job flows matching either of the following criteria are returned:

  • Job flows created and completed in the last two weeks

  • Job flows created within the last two months that are in one of the following states: RUNNING , WAITING , SHUTTING_DOWN , STARTING

Amazon Elastic MapReduce can return a maximum of 512 job flow descriptions.

!DANGER!

This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.

Request Syntax

client.describe_job_flows(
    CreatedAfter=datetime(2015, 1, 1),
    CreatedBefore=datetime(2015, 1, 1),
    JobFlowIds=[
        'string',
    ],
    JobFlowStates=[
        'STARTING'|'BOOTSTRAPPING'|'RUNNING'|'WAITING'|'SHUTTING_DOWN'|'TERMINATED'|'COMPLETED'|'FAILED',
    ]
)
type CreatedAfter

datetime

param CreatedAfter

Return only job flows created after this date and time.

type CreatedBefore

datetime

param CreatedBefore

Return only job flows created before this date and time.

type JobFlowIds

list

param JobFlowIds

Return only job flows whose job flow ID is contained in this list.

  • (string) --

type JobFlowStates

list

param JobFlowStates

Return only job flows whose state is contained in this list.

  • (string) --

    The type of instance.

    A small instance

    A large instance

rtype

dict

returns

Response Syntax

{
    'JobFlows': [
        {
            'JobFlowId': 'string',
            'Name': 'string',
            'LogUri': 'string',
            'AmiVersion': 'string',
            'ExecutionStatusDetail': {
                'State': 'STARTING'|'BOOTSTRAPPING'|'RUNNING'|'WAITING'|'SHUTTING_DOWN'|'TERMINATED'|'COMPLETED'|'FAILED',
                'CreationDateTime': datetime(2015, 1, 1),
                'StartDateTime': datetime(2015, 1, 1),
                'ReadyDateTime': datetime(2015, 1, 1),
                'EndDateTime': datetime(2015, 1, 1),
                'LastStateChangeReason': 'string'
            },
            'Instances': {
                'MasterInstanceType': 'string',
                'MasterPublicDnsName': 'string',
                'MasterInstanceId': 'string',
                'SlaveInstanceType': 'string',
                'InstanceCount': 123,
                'InstanceGroups': [
                    {
                        'InstanceGroupId': 'string',
                        'Name': 'string',
                        'Market': 'ON_DEMAND'|'SPOT',
                        'InstanceRole': 'MASTER'|'CORE'|'TASK',
                        'BidPrice': 'string',
                        'InstanceType': 'string',
                        'InstanceRequestCount': 123,
                        'InstanceRunningCount': 123,
                        'State': 'PROVISIONING'|'BOOTSTRAPPING'|'RUNNING'|'RESIZING'|'SUSPENDED'|'TERMINATING'|'TERMINATED'|'ARRESTED'|'SHUTTING_DOWN'|'ENDED',
                        'LastStateChangeReason': 'string',
                        'CreationDateTime': datetime(2015, 1, 1),
                        'StartDateTime': datetime(2015, 1, 1),
                        'ReadyDateTime': datetime(2015, 1, 1),
                        'EndDateTime': datetime(2015, 1, 1)
                    },
                ],
                'NormalizedInstanceHours': 123,
                'Ec2KeyName': 'string',
                'Ec2SubnetId': 'string',
                'Placement': {
                    'AvailabilityZone': 'string'
                },
                'KeepJobFlowAliveWhenNoSteps': True|False,
                'TerminationProtected': True|False,
                'HadoopVersion': 'string'
            },
            'Steps': [
                {
                    'StepConfig': {
                        'Name': 'string',
                        'ActionOnFailure': 'TERMINATE_JOB_FLOW'|'TERMINATE_CLUSTER'|'CANCEL_AND_WAIT'|'CONTINUE',
                        'HadoopJarStep': {
                            'Properties': [
                                {
                                    'Key': 'string',
                                    'Value': 'string'
                                },
                            ],
                            'Jar': 'string',
                            'MainClass': 'string',
                            'Args': [
                                'string',
                            ]
                        }
                    },
                    'ExecutionStatusDetail': {
                        'State': 'PENDING'|'RUNNING'|'CONTINUE'|'COMPLETED'|'CANCELLED'|'FAILED'|'INTERRUPTED',
                        'CreationDateTime': datetime(2015, 1, 1),
                        'StartDateTime': datetime(2015, 1, 1),
                        'EndDateTime': datetime(2015, 1, 1),
                        'LastStateChangeReason': 'string'
                    }
                },
            ],
            'BootstrapActions': [
                {
                    'BootstrapActionConfig': {
                        'Name': 'string',
                        'ScriptBootstrapAction': {
                            'Path': 'string',
                            'Args': [
                                'string',
                            ]
                        }
                    }
                },
            ],
            'SupportedProducts': [
                'string',
            ],
            'VisibleToAllUsers': True|False,
            'JobFlowRole': 'string',
            'ServiceRole': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    The output for the DescribeJobFlows operation.

    • JobFlows (list) --

      A list of job flows matching the parameters supplied.

      • (dict) --

        A description of a job flow.

        • JobFlowId (string) --

          The job flow identifier.

        • Name (string) --

          The name of the job flow.

        • LogUri (string) --

          The location in Amazon S3 where log files for the job are stored.

        • AmiVersion (string) --

          The version of the AMI used to initialize Amazon EC2 instances in the job flow. For a list of AMI versions currently supported by Amazon ElasticMapReduce, go to AMI Versions Supported in Elastic MapReduce in the Amazon Elastic MapReduce Developer's Guide.

        • ExecutionStatusDetail (dict) --

          Describes the execution status of the job flow.

          • State (string) --

            The state of the job flow.

          • CreationDateTime (datetime) --

            The creation date and time of the job flow.

          • StartDateTime (datetime) --

            The start date and time of the job flow.

          • ReadyDateTime (datetime) --

            The date and time when the job flow was ready to start running bootstrap actions.

          • EndDateTime (datetime) --

            The completion date and time of the job flow.

          • LastStateChangeReason (string) --

            Description of the job flow last changed state.

        • Instances (dict) --

          Describes the Amazon EC2 instances of the job flow.

          • MasterInstanceType (string) --

            The Amazon EC2 master node instance type.

          • MasterPublicDnsName (string) --

            The DNS name of the master node.

          • MasterInstanceId (string) --

            The Amazon EC2 instance identifier of the master node.

          • SlaveInstanceType (string) --

            The Amazon EC2 slave node instance type.

          • InstanceCount (integer) --

            The number of Amazon EC2 instances in the cluster. If the value is 1, the same instance serves as both the master and slave node. If the value is greater than 1, one instance is the master node and all others are slave nodes.

          • InstanceGroups (list) --

            Details about the job flow's instance groups.

            • (dict) --

              Detailed information about an instance group.

              • InstanceGroupId (string) --

                Unique identifier for the instance group.

              • Name (string) --

                Friendly name for the instance group.

              • Market (string) --

                Market type of the Amazon EC2 instances used to create a cluster node.

              • InstanceRole (string) --

                Instance group role in the cluster

              • BidPrice (string) --

                Bid price for EC2 Instances when launching nodes as Spot Instances, expressed in USD.

              • InstanceType (string) --

                Amazon EC2 Instance type.

              • InstanceRequestCount (integer) --

                Target number of instances to run in the instance group.

              • InstanceRunningCount (integer) --

                Actual count of running instances.

              • State (string) --

                State of instance group. The following values are deprecated: STARTING, TERMINATED, and FAILED.

              • LastStateChangeReason (string) --

                Details regarding the state of the instance group.

              • CreationDateTime (datetime) --

                The date/time the instance group was created.

              • StartDateTime (datetime) --

                The date/time the instance group was started.

              • ReadyDateTime (datetime) --

                The date/time the instance group was available to the cluster.

              • EndDateTime (datetime) --

                The date/time the instance group was terminated.

          • NormalizedInstanceHours (integer) --

            An approximation of the cost of the job flow, represented in m1.small/hours. This value is incremented once for every hour an m1.small runs. Larger instances are weighted more, so an Amazon EC2 instance that is roughly four times more expensive would result in the normalized instance hours being incremented by four. This result is only an approximation and does not reflect the actual billing rate.

          • Ec2KeyName (string) --

            The name of an Amazon EC2 key pair that can be used to ssh to the master node of job flow.

          • Ec2SubnetId (string) --

            For job flows launched within Amazon Virtual Private Cloud, this value specifies the identifier of the subnet where the job flow was launched.

          • Placement (dict) --

            The Amazon EC2 Availability Zone for the job flow.

            • AvailabilityZone (string) --

              The Amazon EC2 Availability Zone for the job flow.

          • KeepJobFlowAliveWhenNoSteps (boolean) --

            Specifies whether the job flow should terminate after completing all steps.

          • TerminationProtected (boolean) --

            Specifies whether the Amazon EC2 instances in the cluster are protected from termination by API calls, user intervention, or in the event of a job flow error.

          • HadoopVersion (string) --

            The Hadoop version for the job flow.

        • Steps (list) --

          A list of steps run by the job flow.

          • (dict) --

            Combines the execution state and configuration of a step.

            • StepConfig (dict) --

              The step configuration.

              • Name (string) --

                The name of the job flow step.

              • ActionOnFailure (string) --

                The action to take if the job flow step fails.

              • HadoopJarStep (dict) --

                The JAR file used for the job flow step.

                • Properties (list) --

                  A list of Java properties that are set when the step runs. You can use these properties to pass key value pairs to your main function.

                  • (dict) --

                    A key value pair.

                    • Key (string) --

                      The unique identifier of a key value pair.

                    • Value (string) --

                      The value part of the identified key.

                • Jar (string) --

                  A path to a JAR file run during the step.

                • MainClass (string) --

                  The name of the main class in the specified Java file. If not specified, the JAR file should specify a Main-Class in its manifest file.

                • Args (list) --

                  A list of command line arguments passed to the JAR file's main function when executed.

                  • (string) --

            • ExecutionStatusDetail (dict) --

              The description of the step status.

              • State (string) --

                The state of the job flow step.

              • CreationDateTime (datetime) --

                The creation date and time of the step.

              • StartDateTime (datetime) --

                The start date and time of the step.

              • EndDateTime (datetime) --

                The completion date and time of the step.

              • LastStateChangeReason (string) --

                A description of the step's current state.

        • BootstrapActions (list) --

          A list of the bootstrap actions run by the job flow.

          • (dict) --

            Reports the configuration of a bootstrap action in a job flow.

            • BootstrapActionConfig (dict) --

              A description of the bootstrap action.

              • Name (string) --

                The name of the bootstrap action.

              • ScriptBootstrapAction (dict) --

                The script run by the bootstrap action.

                • Path (string) --

                  Location of the script to run during a bootstrap action. Can be either a location in Amazon S3 or on a local file system.

                • Args (list) --

                  A list of command line arguments to pass to the bootstrap action script.

                  • (string) --

        • SupportedProducts (list) --

          A list of strings set by third party software when the job flow is launched. If you are not using third party software to manage the job flow this value is empty.

          • (string) --

        • VisibleToAllUsers (boolean) --

          Specifies whether the job flow is visible to all IAM users of the AWS account associated with the job flow. If this value is set to true , all IAM users of that AWS account can view and (if they have the proper policy permissions set) manage the job flow. If it is set to false , only the IAM user that created the job flow can view and manage it. This value can be changed using the SetVisibleToAllUsers action.

        • JobFlowRole (string) --

          The IAM role that was specified when the job flow was launched. The EC2 instances of the job flow assume this role.

        • ServiceRole (string) --

          The IAM role that will be assumed by the Amazon EMR service to access AWS resources on your behalf.

AddTags (new) Link ¶

Adds tags to an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clusters to track your Amazon EMR resource allocation costs. For more information, see Tagging Amazon EMR Resources.

Request Syntax

client.add_tags(
    ResourceId='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
type ResourceId

string

param ResourceId

[REQUIRED]

The Amazon EMR resource identifier to which tags will be added. This value must be a cluster identifier.

type Tags

list

param Tags

[REQUIRED]

A list of tags to associate with a cluster and propagate to Amazon EC2 instances. Tags are user-defined key/value pairs that consist of a required key string with a maximum of 128 characters, and an optional value string with a maximum of 256 characters.

  • (dict) --

    A key/value pair containing user-defined metadata that you can associate with an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clusters to track your Amazon EMR resource allocation costs. For more information, see Tagging Amazon EMR Resources.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

    This output indicates the result of adding tags to a resource.

AddJobFlowSteps (new) Link ¶

AddJobFlowSteps adds new steps to a running job flow. A maximum of 256 steps are allowed in each job flow.

If your job flow is long-running (such as a Hive data warehouse) or complex, you may require more than 256 steps to process your data. You can bypass the 256-step limitation in various ways, including using the SSH shell to connect to the master node and submitting queries directly to the software running on the master node, such as Hive and Hadoop. For more information on how to do this, go to Add More than 256 Steps to a Job Flow in the Amazon Elastic MapReduce Developer's Guide .

A step specifies the location of a JAR file stored either on the master node of the job flow or in Amazon S3. Each step is performed by the main function of the main class of the JAR file. The main class can be specified either in the manifest of the JAR or by using the MainFunction parameter of the step.

Elastic MapReduce executes each step in the order listed. For a step to be considered complete, the main function must exit with a zero exit code and all Hadoop jobs started while the step was running must have completed and run successfully.

You can only add steps to a job flow that is in one of the following states: STARTING, BOOTSTRAPPING, RUNNING, or WAITING.

Request Syntax

client.add_job_flow_steps(
    JobFlowId='string',
    Steps=[
        {
            'Name': 'string',
            'ActionOnFailure': 'TERMINATE_JOB_FLOW'|'TERMINATE_CLUSTER'|'CANCEL_AND_WAIT'|'CONTINUE',
            'HadoopJarStep': {
                'Properties': [
                    {
                        'Key': 'string',
                        'Value': 'string'
                    },
                ],
                'Jar': 'string',
                'MainClass': 'string',
                'Args': [
                    'string',
                ]
            }
        },
    ]
)
type JobFlowId

string

param JobFlowId

[REQUIRED]

A string that uniquely identifies the job flow. This identifier is returned by RunJobFlow and can also be obtained from ListClusters.

type Steps

list

param Steps

[REQUIRED]

A list of StepConfig to be executed by the job flow.

  • (dict) --

    Specification of a job flow step.

    • Name (string) -- [REQUIRED]

      The name of the job flow step.

    • ActionOnFailure (string) --

      The action to take if the job flow step fails.

    • HadoopJarStep (dict) -- [REQUIRED]

      The JAR file used for the job flow step.

      • Properties (list) --

        A list of Java properties that are set when the step runs. You can use these properties to pass key value pairs to your main function.

        • (dict) --

          A key value pair.

          • Key (string) --

            The unique identifier of a key value pair.

          • Value (string) --

            The value part of the identified key.

      • Jar (string) -- [REQUIRED]

        A path to a JAR file run during the step.

      • MainClass (string) --

        The name of the main class in the specified Java file. If not specified, the JAR file should specify a Main-Class in its manifest file.

      • Args (list) --

        A list of command line arguments passed to the JAR file's main function when executed.

        • (string) --

rtype

dict

returns

Response Syntax

{
    'StepIds': [
        'string',
    ]
}

Response Structure

  • (dict) --

    The output for the AddJobFlowSteps operation.

    • StepIds (list) --

      The identifiers of the list of steps added to the job flow.

      • (string) --

ListSteps (new) Link ¶

Provides a list of steps for the cluster.

Request Syntax

client.list_steps(
    ClusterId='string',
    StepStates=[
        'PENDING'|'RUNNING'|'COMPLETED'|'CANCELLED'|'FAILED'|'INTERRUPTED',
    ],
    Marker='string'
)
type ClusterId

string

param ClusterId

[REQUIRED]

The identifier of the cluster for which to list the steps.

type StepStates

list

param StepStates

The filter to limit the step list based on certain states.

  • (string) --

type Marker

string

param Marker

The pagination token that indicates the next set of results to retrieve.

rtype

dict

returns

Response Syntax

{
    'Steps': [
        {
            'Id': 'string',
            'Name': 'string',
            'Status': {
                'State': 'PENDING'|'RUNNING'|'COMPLETED'|'CANCELLED'|'FAILED'|'INTERRUPTED',
                'StateChangeReason': {
                    'Code': 'NONE',
                    'Message': 'string'
                },
                'Timeline': {
                    'CreationDateTime': datetime(2015, 1, 1),
                    'StartDateTime': datetime(2015, 1, 1),
                    'EndDateTime': datetime(2015, 1, 1)
                }
            }
        },
    ],
    'Marker': 'string'
}

Response Structure

  • (dict) --

    This output contains the list of steps.

    • Steps (list) --

      The filtered list of steps for the cluster.

      • (dict) --

        The summary of the cluster step.

        • Id (string) --

          The identifier of the cluster step.

        • Name (string) --

          The name of the cluster step.

        • Status (dict) --

          The current execution status details of the cluster step.

          • State (string) --

            The execution state of the cluster step.

          • StateChangeReason (dict) --

            The reason for the step execution status change.

            • Code (string) --

              The programmable code for the state change reason.

            • Message (string) --

              The descriptive message for the state change reason.

          • Timeline (dict) --

            The timeline of the cluster step status over time.

            • CreationDateTime (datetime) --

              The date and time when the cluster step was created.

            • StartDateTime (datetime) --

              The date and time when the cluster step execution started.

            • EndDateTime (datetime) --

              The date and time when the cluster step execution completed or failed.

    • Marker (string) --

      The pagination token that indicates the next set of results to retrieve.

ListInstances (new) Link ¶

Provides information about the cluster instances that Amazon EMR provisions on behalf of a user when it creates the cluster. For example, this operation indicates when the EC2 instances reach the Ready state, when instances become available to Amazon EMR to use for jobs, and the IP addresses for cluster instances, etc.

Request Syntax

client.list_instances(
    ClusterId='string',
    InstanceGroupId='string',
    InstanceGroupTypes=[
        'MASTER'|'CORE'|'TASK',
    ],
    Marker='string'
)
type ClusterId

string

param ClusterId

[REQUIRED]

The identifier of the cluster for which to list the instances.

type InstanceGroupId

string

param InstanceGroupId

The identifier of the instance group for which to list the instances.

type InstanceGroupTypes

list

param InstanceGroupTypes

The type of instance group for which to list the instances.

  • (string) --

type Marker

string

param Marker

The pagination token that indicates the next set of results to retrieve.

rtype

dict

returns

Response Syntax

{
    'Instances': [
        {
            'Id': 'string',
            'Ec2InstanceId': 'string',
            'PublicDnsName': 'string',
            'PublicIpAddress': 'string',
            'PrivateDnsName': 'string',
            'PrivateIpAddress': 'string',
            'Status': {
                'State': 'AWAITING_FULFILLMENT'|'PROVISIONING'|'BOOTSTRAPPING'|'RUNNING'|'TERMINATED',
                'StateChangeReason': {
                    'Code': 'INTERNAL_ERROR'|'VALIDATION_ERROR'|'INSTANCE_FAILURE'|'BOOTSTRAP_FAILURE'|'CLUSTER_TERMINATED',
                    'Message': 'string'
                },
                'Timeline': {
                    'CreationDateTime': datetime(2015, 1, 1),
                    'ReadyDateTime': datetime(2015, 1, 1),
                    'EndDateTime': datetime(2015, 1, 1)
                }
            }
        },
    ],
    'Marker': 'string'
}

Response Structure

  • (dict) --

    This output contains the list of instances.

    • Instances (list) --

      The list of instances for the cluster and given filters.

      • (dict) --

        Represents an EC2 instance provisioned as part of cluster.

        • Id (string) --

          The unique identifier for the instance in Amazon EMR.

        • Ec2InstanceId (string) --

          The unique identifier of the instance in Amazon EC2.

        • PublicDnsName (string) --

          The public DNS name of the instance.

        • PublicIpAddress (string) --

          The public IP address of the instance.

        • PrivateDnsName (string) --

          The private DNS name of the instance.

        • PrivateIpAddress (string) --

          The private IP address of the instance.

        • Status (dict) --

          The current status of the instance.

          • State (string) --

            The current state of the instance.

          • StateChangeReason (dict) --

            The details of the status change reason for the instance.

            • Code (string) --

              The programmable code for the state change reason.

            • Message (string) --

              The status change reason description.

          • Timeline (dict) --

            The timeline of the instance status over time.

            • CreationDateTime (datetime) --

              The creation date and time of the instance.

            • ReadyDateTime (datetime) --

              The date and time when the instance was ready to perform tasks.

            • EndDateTime (datetime) --

              The date and time when the instance was terminated.

    • Marker (string) --

      The pagination token that indicates the next set of results to retrieve.

DescribeStep (new) Link ¶

Provides more detail about the cluster step.

Request Syntax

client.describe_step(
    ClusterId='string',
    StepId='string'
)
type ClusterId

string

param ClusterId

[REQUIRED]

The identifier of the cluster with steps to describe.

type StepId

string

param StepId

[REQUIRED]

The identifier of the step to describe.

rtype

dict

returns

Response Syntax

{
    'Step': {
        'Id': 'string',
        'Name': 'string',
        'Config': {
            'Jar': 'string',
            'Properties': {
                'string': 'string'
            },
            'MainClass': 'string',
            'Args': [
                'string',
            ]
        },
        'ActionOnFailure': 'TERMINATE_JOB_FLOW'|'TERMINATE_CLUSTER'|'CANCEL_AND_WAIT'|'CONTINUE',
        'Status': {
            'State': 'PENDING'|'RUNNING'|'COMPLETED'|'CANCELLED'|'FAILED'|'INTERRUPTED',
            'StateChangeReason': {
                'Code': 'NONE',
                'Message': 'string'
            },
            'Timeline': {
                'CreationDateTime': datetime(2015, 1, 1),
                'StartDateTime': datetime(2015, 1, 1),
                'EndDateTime': datetime(2015, 1, 1)
            }
        }
    }
}

Response Structure

  • (dict) --

    This output contains the description of the cluster step.

    • Step (dict) --

      The step details for the requested step identifier.

      • Id (string) --

        The identifier of the cluster step.

      • Name (string) --

        The name of the cluster step.

      • Config (dict) --

        The Hadoop job configuration of the cluster step.

        • Jar (string) --

          The path to the JAR file that runs during the step.

        • Properties (dict) --

          The list of Java properties that are set when the step runs. You can use these properties to pass key value pairs to your main function.

          • (string) --

            • (string) --

        • MainClass (string) --

          The name of the main class in the specified Java file. If not specified, the JAR file should specify a main class in its manifest file.

        • Args (list) --

          The list of command line arguments to pass to the JAR file's main function for execution.

          • (string) --

      • ActionOnFailure (string) --

        This specifies what action to take when the cluster step fails. Possible values are TERMINATE_CLUSTER, CANCEL_AND_WAIT, and CONTINUE.

      • Status (dict) --

        The current execution status details of the cluster step.

        • State (string) --

          The execution state of the cluster step.

        • StateChangeReason (dict) --

          The reason for the step execution status change.

          • Code (string) --

            The programmable code for the state change reason.

          • Message (string) --

            The descriptive message for the state change reason.

        • Timeline (dict) --

          The timeline of the cluster step status over time.

          • CreationDateTime (datetime) --

            The date and time when the cluster step was created.

          • StartDateTime (datetime) --

            The date and time when the cluster step execution started.

          • EndDateTime (datetime) --

            The date and time when the cluster step execution completed or failed.

ListInstanceGroups (new) Link ¶

Provides all available details about the instance groups in a cluster.

Request Syntax

client.list_instance_groups(
    ClusterId='string',
    Marker='string'
)
type ClusterId

string

param ClusterId

[REQUIRED]

The identifier of the cluster for which to list the instance groups.

type Marker

string

param Marker

The pagination token that indicates the next set of results to retrieve.

rtype

dict

returns

Response Syntax

{
    'InstanceGroups': [
        {
            'Id': 'string',
            'Name': 'string',
            'Market': 'ON_DEMAND'|'SPOT',
            'InstanceGroupType': 'MASTER'|'CORE'|'TASK',
            'BidPrice': 'string',
            'InstanceType': 'string',
            'RequestedInstanceCount': 123,
            'RunningInstanceCount': 123,
            'Status': {
                'State': 'PROVISIONING'|'BOOTSTRAPPING'|'RUNNING'|'RESIZING'|'SUSPENDED'|'TERMINATING'|'TERMINATED'|'ARRESTED'|'SHUTTING_DOWN'|'ENDED',
                'StateChangeReason': {
                    'Code': 'INTERNAL_ERROR'|'VALIDATION_ERROR'|'INSTANCE_FAILURE'|'CLUSTER_TERMINATED',
                    'Message': 'string'
                },
                'Timeline': {
                    'CreationDateTime': datetime(2015, 1, 1),
                    'ReadyDateTime': datetime(2015, 1, 1),
                    'EndDateTime': datetime(2015, 1, 1)
                }
            }
        },
    ],
    'Marker': 'string'
}

Response Structure

  • (dict) --

    This input determines which instance groups to retrieve.

    • InstanceGroups (list) --

      The list of instance groups for the cluster and given filters.

      • (dict) --

        This entity represents an instance group, which is a group of instances that have common purpose. For example, CORE instance group is used for HDFS.

        • Id (string) --

          The identifier of the instance group.

        • Name (string) --

          The name of the instance group.

        • Market (string) --

          The marketplace to provision instances for this group. Valid values are ON_DEMAND or SPOT.

        • InstanceGroupType (string) --

          The type of the instance group. Valid values are MASTER, CORE or TASK.

        • BidPrice (string) --

          The bid price for each EC2 instance in the instance group when launching nodes as Spot Instances, expressed in USD.

        • InstanceType (string) --

          The EC2 instance type for all instances in the instance group.

        • RequestedInstanceCount (integer) --

          The target number of instances for the instance group.

        • RunningInstanceCount (integer) --

          The number of instances currently running in this instance group.

        • Status (dict) --

          The current status of the instance group.

          • State (string) --

            The current state of the instance group.

          • StateChangeReason (dict) --

            The status change reason details for the instance group.

            • Code (string) --

              The programmable code for the state change reason.

            • Message (string) --

              The status change reason description.

          • Timeline (dict) --

            The timeline of the instance group status over time.

            • CreationDateTime (datetime) --

              The creation date and time of the instance group.

            • ReadyDateTime (datetime) --

              The date and time when the instance group became ready to perform tasks.

            • EndDateTime (datetime) --

              The date and time when the instance group terminated.

    • Marker (string) --

      The pagination token that indicates the next set of results to retrieve.

ListClusters (new) Link ¶

Provides the status of all clusters visible to this AWS account. Allows you to filter the list of clusters based on certain criteria; for example, filtering by cluster creation date and time or by status. This call returns a maximum of 50 clusters per call, but returns a marker to track the paging of the cluster list across multiple ListClusters calls.

Request Syntax

client.list_clusters(
    CreatedAfter=datetime(2015, 1, 1),
    CreatedBefore=datetime(2015, 1, 1),
    ClusterStates=[
        'STARTING'|'BOOTSTRAPPING'|'RUNNING'|'WAITING'|'TERMINATING'|'TERMINATED'|'TERMINATED_WITH_ERRORS',
    ],
    Marker='string'
)
type CreatedAfter

datetime

param CreatedAfter

The creation date and time beginning value filter for listing clusters .

type CreatedBefore

datetime

param CreatedBefore

The creation date and time end value filter for listing clusters .

type ClusterStates

list

param ClusterStates

The cluster state filters to apply when listing clusters.

  • (string) --

type Marker

string

param Marker

The pagination token that indicates the next set of results to retrieve.

rtype

dict

returns

Response Syntax

{
    'Clusters': [
        {
            'Id': 'string',
            'Name': 'string',
            'Status': {
                'State': 'STARTING'|'BOOTSTRAPPING'|'RUNNING'|'WAITING'|'TERMINATING'|'TERMINATED'|'TERMINATED_WITH_ERRORS',
                'StateChangeReason': {
                    'Code': 'INTERNAL_ERROR'|'VALIDATION_ERROR'|'INSTANCE_FAILURE'|'BOOTSTRAP_FAILURE'|'USER_REQUEST'|'STEP_FAILURE'|'ALL_STEPS_COMPLETED',
                    'Message': 'string'
                },
                'Timeline': {
                    'CreationDateTime': datetime(2015, 1, 1),
                    'ReadyDateTime': datetime(2015, 1, 1),
                    'EndDateTime': datetime(2015, 1, 1)
                }
            }
        },
    ],
    'Marker': 'string'
}

Response Structure

  • (dict) --

    This contains a ClusterSummaryList with the cluster details; for example, the cluster IDs, names, and status.

    • Clusters (list) --

      The list of clusters for the account based on the given filters.

      • (dict) --

        The summary description of the cluster.

        • Id (string) --

          The unique identifier for the cluster.

        • Name (string) --

          The name of the cluster.

        • Status (dict) --

          The details about the current status of the cluster.

          • State (string) --

            The current state of the cluster.

          • StateChangeReason (dict) --

            The reason for the cluster status change.

            • Code (string) --

              The programmatic code for the state change reason.

            • Message (string) --

              The descriptive message for the state change reason.

          • Timeline (dict) --

            A timeline that represents the status of a cluster over the lifetime of the cluster.

            • CreationDateTime (datetime) --

              The creation date and time of the cluster.

            • ReadyDateTime (datetime) --

              The date and time when the cluster was ready to execute steps.

            • EndDateTime (datetime) --

              The date and time when the cluster was terminated.

    • Marker (string) --

      The pagination token that indicates the next set of results to retrieve.