Skip to content

Instantly share code, notes, and snippets.

@vsouza
Created October 5, 2016 02:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vsouza/77b2aaea67904177ae167fa5edb482c1 to your computer and use it in GitHub Desktop.
Save vsouza/77b2aaea67904177ae167fa5edb482c1 to your computer and use it in GitHub Desktop.
spark_context = SparkContext(appName=kinesis_app_name)
spark_streaming_context = StreamingContext(spark_context, spark_batch_interval)
sql_context = SQLContext(spark_context)
kinesis_stream = KinesisUtils.createStream(
spark_streaming_context, kinesis_app_name, kinesis_stream, kinesis_endpoint,
aws_region, kinesis_initial_position, kinesis_checkpoint_interval)
py_rdd = kinesis_stream.map(lambda x: json.loads(x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment