C# Класс Amazon.ElasticMapReduce.Model.AddJobFlowStepsRequest

Container for the parameters to the AddJobFlowSteps operation. 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, see Add More than 256 Steps to a Job Flow in the Amazon EMR 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.

Amazon EMR 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.

Наследование: AmazonElasticMapReduceRequest
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
AddJobFlowStepsRequest ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

AddJobFlowStepsRequest ( string jobFlowId ) : System

Instantiates AddJobFlowStepsRequest with the parameterized properties

AddJobFlowStepsRequest ( string jobFlowId, List steps ) : System

Instantiates AddJobFlowStepsRequest with the parameterized properties

Приватные методы

Метод Описание
IsSetJobFlowId ( ) : bool
IsSetSteps ( ) : bool

Описание методов

AddJobFlowStepsRequest() публичный Метод

Empty constructor used to set properties independently even when a simple constructor is available
public AddJobFlowStepsRequest ( ) : System
Результат System

AddJobFlowStepsRequest() публичный Метод

Instantiates AddJobFlowStepsRequest with the parameterized properties
public AddJobFlowStepsRequest ( string jobFlowId ) : System
jobFlowId string A string that uniquely identifies the job flow. This identifier is returned by RunJobFlow and can also be obtained from ListClusters.
Результат System

AddJobFlowStepsRequest() публичный Метод

Instantiates AddJobFlowStepsRequest with the parameterized properties
public AddJobFlowStepsRequest ( string jobFlowId, List steps ) : System
jobFlowId string A string that uniquely identifies the job flow. This identifier is returned by RunJobFlow and can also be obtained from ListClusters.
steps List A list of StepConfig to be executed by the job flow.
Результат System