interface SparkUIProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.SparkUIProps |
![]() | software.amazon.awscdk.services.glue.SparkUIProps |
![]() | aws_cdk.aws_glue.SparkUIProps |
![]() | @aws-cdk/aws-glue » 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 from '@aws-cdk/aws-glue';
import * as s3 from '@aws-cdk/aws-s3';
declare const bucket: s3.Bucket;
const sparkUIProps: glue.SparkUIProps = {
enabled: false,
// the properties below are optional
bucket: bucket,
prefix: 'prefix',
};
Properties
Name | Type | Description |
---|---|---|
enabled | boolean | Enable Spark UI. |
bucket? | IBucket | The bucket where the Glue job stores the logs. |
prefix? | string | The path inside the bucket (objects prefix) where the Glue job stores the logs. |
enabled
Type:
boolean
Enable Spark UI.
bucket?
Type:
IBucket
(optional, default: a new bucket will be created.)
The bucket where the Glue job stores the logs.
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.