You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bahir.apache.org by lr...@apache.org on 2020/07/09 01:35:00 UTC

[bahir] branch master updated: [MINOR] Updating sql-streaming sqs Readme (#98)

This is an automated email from the ASF dual-hosted git repository.

lresende pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bahir.git


The following commit(s) were added to refs/heads/master by this push:
     new 33d1a63  [MINOR] Updating sql-streaming sqs Readme (#98)
33d1a63 is described below

commit 33d1a63e262b00a622e708f1945e8a6f6950668c
Author: abhishekd0907 <43...@users.noreply.github.com>
AuthorDate: Thu Jul 9 07:04:50 2020 +0530

    [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 7008766..b0555d6 100644
--- a/sql-streaming-sqs/README.md
+++ b/sql-streaming-sqs/README.md
@@ -30,7 +30,7 @@ Using Maven:
 
     <dependency>
         <groupId>org.apache.bahir</groupId>
-        <artifactId>spark-sql-streaming-akka_{{site.SCALA_BINARY_VERSION}}</artifactId>
+        <artifactId>spark-sql-streaming-sqs_{{site.SCALA_BINARY_VERSION}}</artifactId>
         <version>{{site.SPARK_VERSION}}</version>
     </dependency>
 
@@ -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()