npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@aws-solutions-constructs/aws-kinesisstreams-gluejob

v2.74.0

Published

CDK Constructs for streaming data from AWS Kinesis Data Stream for Glue ETL custom Job processing

Downloads

845

Readme

aws-kinesisstreams-gluejob module


Stability: Experimental

All classes are under active development and subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.


| Reference Documentation: | https://docs.aws.amazon.com/solutions/latest/constructs/ | | :--------------------------- | :------------------------------------------------------------------------------------------------ |

| Language | Package | | :--------------------------------------------------------------------------------------------- | -------------------------------------------------------------- | | Python Logo Python | aws_solutions_constructs.aws_kinesis_streams_gluejob | | Typescript Logo Typescript | @aws-solutions-constructs/aws-kinesisstreams-gluejob | | Java Logo Java | software.amazon.awsconstructs.services.kinesisstreamsgluejob |

Overview

This AWS Solutions Construct deploys a Kinesis Stream and configures a AWS Glue Job to perform custom ETL transformation with the appropriate resources/properties for interaction and security. It also creates an S3 bucket where the python script for the AWS Glue Job can be uploaded.

Here is a minimal deployable pattern definition:

Typescript

import * as glue from "@aws-cdk/aws-glue";
import * as s3assets from "@aws-cdk/aws-s3-assets";
import { KinesisstreamsToGluejob } from "@aws-solutions-constructs/aws-kinesisstreams-gluejob";

const fieldSchema: glue.CfnTable.ColumnProperty[] = [
  {
    name: "id",
    type: "int",
    comment: "Identifier for the record",
  },
  {
    name: "name",
    type: "string",
    comment: "Name for the record",
  },
  {
    name: "address",
    type: "string",
    comment: "Address for the record",
  },
  {
    name: "value",
    type: "int",
    comment: "Value for the record",
  },
];

const customEtlJob = new KinesisstreamsToGluejob(this, "CustomETL", {
  glueJobProps: {
    command: {
      name: "gluestreaming",
      pythonVersion: "3",
    },
  },
  fieldSchema: fieldSchema,
  etlCodeAsset: new s3assets.Asset(this, "ScriptLocation", {
    path: `${__dirname}/../etl/transform.py`,
  }),
});

Pattern Construct Props

| Name | Type | Description | | :------------------ | :---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | | existingStreamObj? | kinesis.Stream | Existing instance of Kinesis Stream, providing both this and kinesisStreamProps will cause an error. | | kinesisStreamProps? | kinesis.StreamProps | Optional user-provided props to override the default props for the Kinesis stream. | | glueJobProps? | cfnJob.CfnJobProps | User provided props to override the default props for the AWS Glue Job. | | existingGlueJob? | cfnJob.CfnJob | Existing instance of AWS Glue Job, providing both this and glueJobProps will cause an error. | | fieldSchema? | CfnTable.ColumnProperty[] | User provided schema structure to create an AWS Glue Table. | | existingTable? | CfnTable | Existing instance of AWS Glue Table. If this is set, tableProps and fieldSchema are ignored. | | tableProps? | CfnTableProps | User provided AWS Glue Table props to override default props used to create a Glue Table. | | existingDatabase? | CfnDatabase | Existing instance of AWS Glue Database. If this is set, then databaseProps is ignored. | | databaseProps? | CfnDatabaseProps | User provided Glue Database Props to override the default props used to create the Glue Database. | | outputDataStore? | SinkDataStoreProps | User provided properties for S3 bucket that stores Glue Job output. Current datastore types supported is only S3. | |createCloudWatchAlarms?|boolean|Whether to create recommended CloudWatch alarms for Kinesis Data Stream. Default value is set to true.| | etlCodeAsset? | s3assets.Asset | User provided instance of the Asset class that represents the ETL code on the local filesystem |

SinkDataStoreProps

| Name | Type | Description | | :---------------------- | :------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------- | | existingS3OutputBucket? | Bucket | Existing instance of S3 bucket where the data should be written. Providing both this and outputBucketProps will cause an error. | | outputBucketProps | BucketProps | User provided bucket properties to create the S3 bucket to store the output from the AWS Glue Job. | | datastoreType | SinkStoreType | Sink data store type. |

SinkStoreType

Enumeration of data store types that could include S3, DynamoDB, DocumentDB, RDS or Redshift. Current construct implementation only supports S3, but potential to add other output types in the future.

| Name | Type | Description | | :------- | :------- | --------------- | | S3 | string | S3 storage type |

Pattern Properties

| Name | Type | Description | |:-------------|:----------------|-----------------| |kinesisStream|kinesis.Stream|Returns an instance of the Kinesis stream created or used by the pattern.| |glueJob|CfnJob|Returns an instance of AWS Glue Job created by the construct.| |glueJobRole|iam.Role|Returns an instance of the IAM Role created by the construct for the Glue Job.| |database|CfnDatabase|Returns an instance of AWS Glue Database created by the construct.| |table|CfnTable|Returns an instance of the AWS Glue Table created by the construct| |outputBucket?|s3.Bucket|Returns an instance of the output bucket created by the construct for the AWS Glue Job.| |cloudwatchAlarms?|cloudwatch.Alarm[]|Returns an array of recommended CloudWatch Alarms created by the construct for Kinesis Data stream.|

Default settings

Out of the box implementation of the Construct without any override will set the following defaults:

Amazon Kinesis Stream

  • Configure least privilege access IAM role for Kinesis Stream
  • Enable server-side encryption for Kinesis Stream using AWS Managed KMS Key
  • Deploy best practices CloudWatch Alarms for the Kinesis Stream

Glue Job

  • Create a Glue Security Config that configures encryption for CloudWatch, Job Bookmarks, and S3. CloudWatch and Job Bookmarks are encrypted using AWS Managed KMS Key created for AWS Glue Service. The S3 bucket is configured with SSE-S3 encryption mode
  • Configure service role policies that allow AWS Glue to read from Kinesis Data Streams

Glue Database

  • Create an AWS Glue database. An AWS Glue Table will be added to the database. This table defines the schema for the records buffered in the Amazon Kinesis Data Streams

Glue Table

  • Create an AWS Glue table. The table schema definition is based on the JSON structure of the records buffered in the Amazon Kinesis Data Streams

IAM Role

  • A job execution role that has privileges to 1) read the ETL script from the S3 bucket location, 2) read records from the Kinesis Stream, and 3) execute the Glue Job

Output S3 Bucket

  • An S3 bucket to store the output of the ETL transformation. This bucket will be passed as an argument to the created glue job so that it can be used in the ETL script to write data into it

Cloudwatch Alarms

  • A CloudWatch Alarm to report when consumer application is reading data slower than expected
  • A CloudWatch Alarm to report when consumer record processing is falling behind (to avoid risk of data loss due to record expiration)

Architecture

Architecture Diagram

Reference Implementation

A sample use case which uses this pattern is available under use_cases/aws-custom-glue-etl.

© Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.