Quantcast
Channel: CodeSection,代码区,数据库(综合) - CodeSec
Viewing all articles
Browse latest Browse all 6262

Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

$
0
0

Getting Started with Serverless FaaS and AWS Lambda showshow to use a simple Java functionto store a JSON document to Couchbase using AWS Lambda. This blog buildsupon that and shows how an AWS IoT Button can be used as atrigger for that Lambda function.

By end of this blog, you’ll learn:

How to configure AWS IoT Button Use IoT Button astrigger for Lambda Function Test IoT button

The overall flowwill be:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Iot button click will invokeHelloCouchbaseLambdaLambda function. This function is uses Couchbase Java SDK to create a JSON document in Couchbase.

This blog is also playingcatch up with Collecting iBeacon Data with Couchbase and Raspberry Pi IoT Devices by Nic and The CouchCase by Matthew on their summer projects.One last blog will be published in this series. That will show how multiple AWS IoT buttons can be usedfor some fun.

Let’s get started!

Configure IoT Button

The fastest way to configure IoT button is using the mobile app for iOS or Android.


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase
Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

More details about configuring IoT Button using mobile app .

Here are some snapshots from configuring button using the mobile app.

Bring up the app, click on + to start configuring a new button:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Enter button’s serial number:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Register the button:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Configure the buttonwith wifi network:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Upload all the certificates etc:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

After this, the button is configured and ready to use. This blog skipped the part where a template Lambda Function is associated with the button click.

If mobile appcannot be used then the button can be configured manually .

Use IoT Button as Trigger for Lambda Function

The aws lambda create-event-source-mapping CLI allows to create an event source for Lambda function. As of AWS CLI version 1.11.21 , only Amazon Kinesis stream or an Amazon DynamoDB stream can be used. But for this blog, we’ll use IoT button as a trigger. And this has to be configured using AWS Lambda Console .

IoT Button is only supported in a limited number of regions. For example, it is not supported in the us-west-1 region but us-west-2 region works.

The list ofregions not supported are greyed out in the following list:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Lambda Functioncan be triggered by several events.Lambda Function is invoked when any of theseevents occur. By default, no triggers are associated witha Lambda Function. For our HelloCouchbaseLambda function, these can be seen at us-west-2.console.aws.amazon.com/lambda/home?region=us-west-2#/functions/HelloCouchbaseLambda?tab=triggers .


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Click on Add trigger to add a new trigger:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Select on the empty square to create a new trigger, and select AWS IoT :


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Forthe button previously registered, get the serial number from us-west-2.console.aws.amazon.com/iotv2/home?region=us-west-2#/thinghub :


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Specify the serial number of the button in the AWS IoT trigger:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Click on Submit to create the trigger:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

And this confirms that the trigger has been added.

Test IoT Button

Before testing the button, let’s login to the Couchbase instance and verify the number of JSON documents in the bucket:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

This can be verified at http://<EC2-IP-Address>:8091/index.html#sec=buckets . As expected, no documents exists in the bucket.

Press the button once, and refresh the page. It shows that one document is now stored in the bucket. This is verified in the Couchbase Web Console:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Click on Documents to see the complete list of documents:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Click on the document ID to see more details about the document:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

Only timestamp is stored in this JSON document.

Now, let’s update HelloCouchbaseLambda code to include request id in thedocument as well. This can be achieved by adding the following line of code in theJava class:

buttonDocument.setRequestId(context.getAwsRequestId());

A new deployment package can be built and uploaded using the following command:

mvncleanpackage; awslambdaupdate-function-code \ --function-nameHelloCouchbaseLambda \ --zip-filefileb:///Users/arungupta/workspaces/serverless/aws/hellocouchbase/hellocouchbase/target/hellocouchbase-1.0-SNAPSHOT.jar \ --regionus-west-2 \ --publish

Now clicking the button will update the number of documents. But the updated document will have an additional attribute populated as shown:


Miles to go ... - Arun Gupta: AWS IoT Button, Lambda and Couchbase

How are you going to take AWS IoT button and use it with Lambda and Couchbase? Let us know at Couchbase Forums .

References AWS IoTButton

Viewing all articles
Browse latest Browse all 6262

Trending Articles