Github user budde commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17250#discussion_r107761342
  
    --- Diff: 
external/kinesis-asl/src/main/scala/org/apache/spark/streaming/kinesis/KinesisInputDStream.scala
 ---
    @@ -71,7 +75,238 @@ private[kinesis] class KinesisInputDStream[T: ClassTag](
     
       override def getReceiver(): Receiver[T] = {
         new KinesisReceiver(streamName, endpointUrl, regionName, 
initialPositionInStream,
    -      checkpointAppName, checkpointInterval, storageLevel, messageHandler,
    -      kinesisCredsProvider)
    +      checkpointAppName, checkpointInterval, _storageLevel, messageHandler,
    +      kinesisCreds, dynamoDBCreds, cloudWatchCreds)
       }
     }
    +
    +@InterfaceStability.Evolving
    +object KinesisInputDStream {
    +  /**
    +   * Builder for [[KinesisInputDStream]] instances.
    +   *
    +   * @since 2.2.0
    +   */
    +  @InterfaceStability.Evolving
    +  class Builder {
    +    // Required params
    +    private var streamingContext: Option[StreamingContext] = None
    +    private var streamName: Option[String] = None
    +    private var checkpointAppName: Option[String] = None
    +
    +    // Params with defaults
    +    private var endpointUrl: Option[String] = None
    +    private var regionName: Option[String] = None
    +    private var initialPositionInStream: Option[InitialPositionInStream] = 
None
    +    private var checkpointInterval: Option[Duration] = None
    +    private var storageLevel: Option[StorageLevel] = None
    +    private var kinesisCredsProvider: Option[SparkAWSCredentials] = None
    +    private var dynamoDBCredsProvider: Option[SparkAWSCredentials] = None
    +    private var cloudWatchCredsProvider: Option[SparkAWSCredentials] = None
    +
    +    /**
    +     * Sets the StreamingContext that will be used to construct the 
Kinesis DStream. This is a
    +     * required parameter.
    +     *
    +     * @param ssc [[StreamingContext]] used to construct Kinesis DStreams
    +     * @return Reference to this [[KinesisInputDStream.Builder]]
    +     */
    +    def streamingContext(ssc: StreamingContext): Builder = {
    +      streamingContext = Option(ssc)
    +      this
    +    }
    +
    +    /**
    +     * Sets the StreamingContext that will be used to construct the 
Kinesis DStream. This is a
    +     * required parameter.
    +     *
    +     * @param jssc [[JavaStreamingContext]] used to construct Kinesis 
DStreams
    +     * @return Reference to this [[KinesisInputDStream.Builder]]
    +     */
    +    def streamingContext(jssc: JavaStreamingContext): Builder = {
    +      streamingContext = Option(jssc.ssc)
    +      this
    +    }
    +
    +    /**
    +     * Sets the name of the Kinesis stream that the DStream will read 
from. This is a required
    +     * parameter.
    +     *
    +     * @param streamName Name of Kinesis stream that the DStream will read 
from
    +     * @return Reference to this [[KinesisInputDStream.Builder]]
    +     */
    +    def streamName(streamName: String): Builder = {
    +      this.streamName = Option(streamName)
    +      this
    +    }
    +
    +    /**
    +     * Sets the KCL application name to use when checkpointing state to 
DynamoDB. This is a
    +     * required parameter.
    +     *
    +     * @param appName Value to use for the KCL app name (used when 
creating the DynamoDB checkpoint
    +     *                table and when writing metrics to CloudWatch)
    +     * @return Reference to this [[KinesisInputDStream.Builder]]
    +     */
    +    def checkpointAppName(appName: String): Builder = {
    +      checkpointAppName = Option(appName)
    +      this
    +    }
    +
    +    /**
    +     * Sets the AWS Kinesis endpoint URL. Defaults to 
"https://kinesis.us-east-1.amazonaws.com"; if
    +     * no custom value is specified
    +     *
    +     * @param url Kinesis endpoint URL to use
    +     * @return Reference to this [[KinesisInputDStream.Builder]]
    +     */
    +    def endpointUrl(url: String): Builder = {
    +      endpointUrl = Option(url)
    +      this
    +    }
    +
    +    /**
    +     * Sets the AWS region to construct clients for. Defaults to 
"us-east-1" if no custom value
    +     * is specified.
    +     *
    +     * @param regionName Name of AWS region to use (e.g. "us-west-2")
    +     * @return Reference to this [[KinesisInputDStream.Builder]]
    +     */
    +    def regionName(regionName: String): Builder = {
    +      this.regionName = Option(regionName)
    +      this
    +    }
    +
    +    /**
    +     * Sets the initial position data is read from in the Kinesis stream. 
Defaults to
    +     * [[InitialPositionInStream.LATEST]] if no custom value is specified.
    +     *
    +     * @param initialPosition InitialPositionInStream value specifying 
where Spark Streaming
    +     *                        will start reading records in the Kinesis 
stream from
    +     * @return Reference to this [[KinesisInputDStream.Builder]]
    +     */
    +    def initialPositionInStream(initialPosition: InitialPositionInStream): 
Builder = {
    +      initialPositionInStream = Option(initialPosition)
    +      this
    +    }
    +
    +    /**
    +     * Sets how often the KCL application state is checkpointed to 
DynamoDB. Defaults to the Spark
    +     * Streaming batch interval if no custom value is specified.
    +     *
    +     * @param interval [[Duration]] specifying how often the KCL state 
should be checkpointed to
    +     *                 DynamoDB.
    +     * @return Reference to this [[KinesisInputDStream.Builder]]
    +     */
    +    def checkpointInterval(interval: Duration): Builder = {
    +      checkpointInterval = Option(interval)
    +      this
    +    }
    +
    +    /**
    +     * Sets the storage level of the blocks for the DStream created. 
Defaults to
    +     * [[StorageLevel.MEMORY_AND_DISK_2]] if no custom value is specified.
    +     *
    +     * @param storageLevel [[StorageLevel]] to use for the DStream data 
blocks
    +     * @return Reference to this [[KinesisInputDStream.Builder]]
    +     */
    +    def storageLevel(storageLevel: StorageLevel): Builder = {
    +      this.storageLevel = Option(storageLevel)
    +      this
    +    }
    +
    +    /**
    +     * Sets the [[SparkAWSCredentials]] to use for authenticating to the 
AWS Kinesis
    +     * endpoint. Defaults to [[DefaultCredentialsProvider]] if no custom 
value is specified.
    +     *
    +     * @param credentials [[SerialziableCredentialsProvider]] to use for 
Kinesis authentication
    --- End diff --
    
    Figured out why I didn't catch this before-- apparently I can't spell 
"serializable". Ugh!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to