From 33d1a63e262b00a622e708f1945e8a6f6950668c Mon Sep 17 00:00:00 2001 From: abhishekd0907 <43843989+abhishekd0907@users.noreply.github.com> Date: Thu, 9 Jul 2020 07:04:50 +0530 Subject: [PATCH] [MINOR] Updating sql-streaming sqs Readme (#98) Fixing dependency name and adding useInstanceProfileCredentials in the example on Readme because it is frequently used. --- sql-streaming-sqs/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sql-streaming-sqs/README.md b/sql-streaming-sqs/README.md index 70087667..b0555d6c 100644 --- a/sql-streaming-sqs/README.md +++ b/sql-streaming-sqs/README.md @@ -30,7 +30,7 @@ Using Maven: org.apache.bahir - spark-sql-streaming-akka_{{site.SCALA_BINARY_VERSION}} + spark-sql-streaming-sqs_{{site.SCALA_BINARY_VERSION}} {{site.SPARK_VERSION}} @@ -76,4 +76,5 @@ An example to create a SQL stream which uses Amazon SQS to list files on S3, .option("fileFormat", "json") .option("sqsFetchIntervalSeconds", "2") .option("sqsLongPollingWaitTimeSeconds", "5") + .option("useInstanceProfileCredentials", "true") .load()