interface SparkUIProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.Alpha.SparkUIProps |
![]() | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#SparkUIProps |
![]() | software.amazon.awscdk.services.glue.alpha.SparkUIProps |
![]() | aws_cdk.aws_glue_alpha.SparkUIProps |
![]() | @aws-cdk/aws-glue-alpha ยป SparkUIProps |
Properties for enabling Spark UI monitoring feature for Spark-based Glue jobs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue_alpha from '@aws-cdk/aws-glue-alpha';
import { aws_s3 as s3 } from 'aws-cdk-lib';
declare const bucket: s3.Bucket;
const sparkUIProps: glue_alpha.SparkUIProps = {
bucket: bucket,
jobRunQueuingEnabled: false,
prefix: 'prefix',
};
Properties
Name | Type | Description |
---|---|---|
bucket? | IBucket | The bucket where the Glue job stores the logs. |
job | boolean | Specifies whether job run queuing is enabled for the job runs for this job. |
prefix? | string | The path inside the bucket (objects prefix) where the Glue job stores the logs. |
bucket?
Type:
IBucket
(optional, default: a new bucket will be created.)
The bucket where the Glue job stores the logs.
jobRunQueuingEnabled?
Type:
boolean
(optional, default: no job run queuing)
Specifies whether job run queuing is enabled for the job runs for this job.
A value of true means job run queuing is enabled for the job runs. If false or not populated, the job runs will not be considered for queueing. If this field does not match the value set in the job run, then the value from the job run field will be used. This property must be set to false for flex jobs. If this property is enabled, maxRetries must be set to zero.
prefix?
Type:
string
(optional, default: the logs will be written at the root of the bucket)
The path inside the bucket (objects prefix) where the Glue job stores the logs.
Use format '/foo/bar'