KinesisUtils.
createStream
Create an input stream that pulls messages from a Kinesis stream. This uses the Kinesis Client Library (KCL) to pull messages from Kinesis.
StreamingContext
StreamingContext object
Kinesis application name used by the Kinesis Client Library (KCL) to update DynamoDB
Kinesis stream name
Url of Kinesis service (e.g., https://kinesis.us-east-1.amazonaws.com)
Name of region used by the Kinesis Client Library (KCL) to update DynamoDB (lease coordination and checkpointing) and CloudWatch (metrics)
In the absence of Kinesis checkpoint info, this is the worker’s initial starting position in the stream. The values are either the beginning of the stream per Kinesis’ limit of 24 hours (InitialPositionInStream.TRIM_HORIZON) or the tip of the stream (InitialPositionInStream.LATEST).
Checkpoint interval(in seconds) for Kinesis checkpointing. See the Kinesis Spark Streaming documentation for more details on the different types of checkpoints.
Level of CloudWatch PutMetrics. Can be set to either DETAILED, SUMMARY, or NONE. (default is DETAILED)
pyspark.StorageLevel
Storage level to use for storing the received objects (default is StorageLevel.MEMORY_AND_DISK_2)
AWS AccessKeyId (default is None. If None, will use DefaultAWSCredentialsProviderChain)
AWS SecretKey (default is None. If None, will use DefaultAWSCredentialsProviderChain)
A function used to decode value (default is utf8_decoder)
ARN of IAM role to assume when using STS sessions to read from the Kinesis stream (default is None).
Name to uniquely identify STS sessions used to read from Kinesis stream, if STS is being used (default is None).
External ID that can be used to validate against the assumed IAM role’s trust policy, if STS is being used (default is None).
Notes
The given AWS credentials will get saved in DStream checkpoints if checkpointing is enabled. Make sure that your checkpoint directory is secure.