Giter Site home page Giter Site logo

dynamodb-pagination-java's Introduction

DynamoDB Pagination Library

This is a Java library for performing pagination on DynamoDB tables. It is a (nearly) direct extraction from awslabs/realworld-serverless-application.

Background

For most services, we use the nextToken approach used by various AWS services for pagination. Because DynamoDB does not have any sense of pages, we need to remember the last item that was retrieved and return it to the client in an opaque form.

For this, we also encrypt the token to prevent tampering or misuse.

Algorithm

We paginagte with the following decision process:

  • If there are more items to fetch from the database: add a nextToken property to the response
  • Otherwise set the nextToken property to null

IMPORTANT Pagination tokens should ALWAYS be seen as opaque from the client side, i.e. they should never assume or be able to decode the token structure!

We utilize the lastEvaluatedKey property for Query actions against a DynamoDB table. If this property is, set it will be processed with the following algorithms:

Serialization

base64.encode(kms.encrypt(json.serialize(lastEvaluatedKey)&<current-timestamp>))

Deserialization

json.deserialize(kms.decrypt(base64.decode(nextToken)))

Representation

The pseudo-code representation is:

<lastEvaluatedKey-encrypted>&<timestamp>

dynamodb-pagination-java's People

Contributors

thomasklinger1234 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.