Package version:

Interface HDInsightSparkActivity

HDInsight Spark activity.

interface HDInsightSparkActivity {
    arguments?: any[];
    className?: string;
    dependsOn?: ActivityDependency[];
    description?: string;
    entryFilePath: any;
    getDebugInfo?: string;
    linkedServiceName?: LinkedServiceReference;
    name: string;
    onInactiveMarkAs?: string;
    policy?: ActivityPolicy;
    proxyUser?: any;
    rootPath: any;
    sparkConfig?: {
        [propertyName: string]: any;
    };
    sparkJobLinkedService?: LinkedServiceReference;
    state?: string;
    type: "HDInsightSpark";
    userProperties?: UserProperty[];
}

Hierarchy (view full)

Properties

arguments?: any[]

The user-specified arguments to HDInsightSparkActivity.

className?: string

The application's Java/Spark main class.

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

entryFilePath: any

The relative path to the root folder of the code/package to be executed. Type: string (or Expression with resultType string).

getDebugInfo?: string

Debug info option.

linkedServiceName?: LinkedServiceReference

Linked service reference.

name: string

Activity name.

onInactiveMarkAs?: string

Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.

Activity policy.

proxyUser?: any

The user to impersonate that will execute the job. Type: string (or Expression with resultType string).

rootPath: any

The root path in 'sparkJobLinkedService' for all the job’s files. Type: string (or Expression with resultType string).

sparkConfig?: {
    [propertyName: string]: any;
}

Spark configuration property.

sparkJobLinkedService?: LinkedServiceReference

The storage linked service for uploading the entry file and dependencies, and for receiving logs.

state?: string

Activity state. This is an optional property and if not provided, the state will be Active by default.

type

Polymorphic discriminator, which specifies the different types this object can be

userProperties?: UserProperty[]

Activity user properties.