DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Utilizing Database Hooks Like a Pro in Node.js
  • A Beginner's Guide to Back-End Development
  • Nginx + Node.JS: Perform Identification and Authentication
  • Creating a Secure REST API in Node.js

Trending

  • Why Round-Robin Won't Save You: Load Balancing Challenges in Data Streaming Services With Heterogeneous Traffic
  • Stateless JWT Auth Microservice Architecture With Spring Boot 3 and Redis Sentinel
  • Contract-First Integration: Building Scalable Systems With Flyway, OpenAPI, and Kafka
  • The Hidden Cost of AI Tokens: Engineering Patterns for 10x Resource Efficiency
  1. DZone
  2. Data Engineering
  3. Databases
  4. Scan DynamoDB Items With Node.js

Scan DynamoDB Items With Node.js

Tap into DynamoDB's scanning ability with some quick JavaScript. Be warned, though, that it might be more expensive than it's worth.

By 
Emmanouil Gkatziouras user avatar
Emmanouil Gkatziouras
DZone Core CORE ·
Aug. 07, 16 · Tutorial
Likes (3)
Comment
Save
Tweet
Share
20.1K Views

Join the DZone community and get the full member experience.

Join For Free

In previous posts, we covered how to query a DynamoDB database.

Query DynamoDB Part 1.
Query DynamoDB Part 2.

Apart from issuing queries DynamoDB, also offers Scan functionality. 

Scan fetches all the items you might have on your DynamoDB Table. Therefore, scan does not require any rules based on your partition key or your global/local secondary indexes. What scan offers is filtering based on the items already fetched and returning specific attributes from those fetched items.

The snippet below issues a scan on the Logins table by adding filtering and selecting only the email field:

var scanLogins = function(date,callback) {

    var docClient = new AWS.DynamoDB.DocumentClient();

        var params = {
            TableName:"Logins",
            ProjectionExpression: "email",
            FilterExpression: "#timestamp < :from",
            ExpressionAttributeNames: {
                "#timestamp": "timestamp",
            },
            ExpressionAttributeValues: {
                ":from": date.getTime()
            }
    };

    var items = []

    var scanExecute = function(callback) {

        docClient.scan(params,function(err,result) {

            if(err) {
                callback(err);
            } else {

                items = items.concat(result.Items);

                if(result.LastEvaluatedKey) {

                    params.ExclusiveStartKey = result.LastEvaluatedKey;
                    scanExecute(callback);
                } else {
                    callback(err,items);
                }
            }
        });
    }
    scanExecute(callback);
};


Before using scan on an application, we have to take into consideration that scan fetches all table items. Therefore, it has a high cost both on charges and performance. Also, it might consume your provision capacity. It is better to stick to queries and avoid scans.

You can find the source code on GitHub.

Related Refcard:

Node.js

Node.js Database

Published at DZone with permission of Emmanouil Gkatziouras. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Utilizing Database Hooks Like a Pro in Node.js
  • A Beginner's Guide to Back-End Development
  • Nginx + Node.JS: Perform Identification and Authentication
  • Creating a Secure REST API in Node.js

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook