Coder Social home page Coder Social logo

mt-dynamo's Introduction

Build Status Coverage Status

Multitenant AWS Dynamo SDK (mt-dynamodb)

Description

Multitenant AWS Dynamo supports the AWS Dynamo Java API.

You can write your application code against the Amazon DynamoDB interface as you would for any other application. The implementation will manage storage of data by tenant. You can tell the implementation how you want the data stored when you create the AmazonDynamoDB using the provided builders. This library provides 3 multitenant builders that allow you to create your AmazonDynamoDB client. Using these builders, you tell the implementation how you want to manage storage of tenant data. The 3 basic implementations are MtAmazonDynamoDbByAccount, MtAmazonDynamoDbByTable, and SharedTable. These implementations allow you to separate your tenants' data by AWS account, to separate your tenants' data by table name, or to store tenant data colocated in a set of predefined physical tables, respectively. Builders may also be chained, allowing you to combine storage schemes. In order for the implementation to manage multitenancy on your behalf, you provide it with an MtAmazonDynamoDbContextProvider`. The implementation calls back to the context provider whenever it needs to retrieve or store data. Your implementation returns a string representing a tenant identifier of your choosing.

See details below on each of the 3 tenant storage schemes. Further details are provided in the Javadoc for each implementation.

Note: Not all AmazonDynamoDB methods are currently supported. See Javadoc for details.

Usage

Multitenant Context

MtAmazonDynamoDbContextProvider

Each builder requires providing an MtAmazonDynamoDbContextProvider implementation. This context implementation allows your application code to return a unique identifier for a tenant which is used by the implementation to include the tenant identifier in all read and write operations.

Multitenant Builders

Each of the following implementations has a builder() method. See the Javadoc for each class for details on usage.

MtAmazonDynamoDbByAccount

Allows for dividing tenants into different AWS accounts. byAccount shows an example of how data looks in its persisted state.

To use, pass your AmazonDynamoDBClientBuilder, MtAccountCredentialsMapper, and MtAmazonDynamoDbContextProvider to the builder. At runtime, a String representing the tenant identifier will be passed to your credentials mapper, allowing you to map the context to different AWS credentials implementations. Note that MtAmazonDynamoDbByAccount does not support delegation and therefore must always be at the end of the chain when it is used. See details about chaining below.

MtAmazonDynamoDbByAccount.builder()
    .withAmazonDynamoDbClientBuilder(AmazonDynamoDBClientBuilder.standard())
    .withAccountCredentialsMapper(new MtAccountCredentialsMapper() {
        @Override
        public AWSCredentialsProvider getAwsCredentialsProvider(String tenantIdentifier) {
            // return an AWSCredentialsProvider based on the tenant identifier
        }
    })
    .withContext(contextProviderImpl)
    .build();

See Javadoc for MtAmazonDynamoDbByAccount for more details. See MtAmazonDynamoDbByAccountTest for code examples.

MtAmazonDynamoDbByTable

Allows for dividing tenants into their own tables by prefixing table names with the tenant identifier. byTable shows an example of how data looks in its persisted state.

To use, pass your AmazonDynamoDB and MtAmazonDynamoDbContextProvider to the builder. At runtime, the implementation will prefix all table names with the tenant identifier.

MtAmazonDynamoDbByTable.builder()
    .withAmazonDynamoDb(AmazonDynamoDBClientBuilder.standard().build())
    .withContext(contextProviderImpl)
    .build();

See Javadoc for MtAmazonDynamoDbByTable for more details. See MtAmazonDynamoDbByTableTest for code examples.

SharedTable

Allows for storing all tenant data in a set of shared tables, dividing tenants by prefixing the table's HASH key field with the tenant identifier. bySharedTable shows an example of how data looks in its persisted state.

To use, pass your AmazonDynamoDB and MtAmazonDynamoDbContextProvider to the builder. At runtime, the implementation will prefix the HASH key with the tenant identifier. It will store table definitions in DynamoDB itself in a table called _TABLEMETADATA. Data will be stored in tables starting with the name mt_sharedtablestatic_.

MtAmazonDynamoDbBySharedTableBuilders.SharedTable.builder()
    .withAmazonDynamoDb(AmazonDynamoDBClientBuilder.standard().build())
    .withContext(mtContext)
    .build();

See Javadoc for MtAmazonDynamoDbBySharedTableBuilders.SharedTable for more build-time configuration options and details. See MtAmazonDynamoDbBySharedTableTest for code examples.

SharedTableCustomDynamic and SharedTableCustomStatic

For more flexibility, there are additional builders provided in MtAmazonDynamoDbBySharedTableBuilders that allow you to provide custom mappings between "virtual" tables, those accessed by the application code that is using the AWS Dynamo Java API to multitenant physical tables. See Javadoc for MtAmazonDynamoDbBySharedTableBuilders for details.

Table Prefixes

All builders support passing in a table prefix with a withTablePrefix() method. This will provide naming separation between different applications using the mt-dynamo library against tables in the same AWS account. It is recommended that you always provide a table prefix to prevent inadvertent commingling of data.

Chaining

Builders may also be chained, allowing you to combine storage schemes.

For example, you may want to split your tenants across 2 AWS accounts. Within those accounts, you will store your tenant data in tables prefixed by table name. In that case, you would create an account builder and pass it to a table builder. The table name would get prefixed with the tenant ID and the request would be delegated to the appropriate AWS account based on the tenant ID and the AWSCredentialProvider returned by your MtAccountCredentialsMapper.

Below is a list of supported chaining sequences, each with a link to an example of how data looks in its persisted state for the configured chaining sequence.

See DocGeneratorRunner for examples of how to configure builders for each of the chain sequences.

Limitations

Methods

  • All implementations support the following methods createTable, describeTable, deleteTable, getItem, batchGetItem, putItem, scan, and query.
  • The following methods are NOT supported: updateTable, batchWriteItem, createBackup, deleteBackup, listBackups, restoreTableFromBackup, createGlobalTable, updateGlobalTable, describeGlobalTable, listGlobalTables, describeContinuousBackups, describeLimits, describeTimeToLive, updateTimeToLive, listTagsOfResource, tagResource, untagResource, getCachedResponseMetadata, waiters.
  • ScanRequest and QueryRequest calls currently only support EQ and GT conditions (GT via KeyConditions only).
  • All SharedTable* implementations...
    • Table Primary Keys: Currently, this implementation supports tables with a primary key containing only a HASH field of type STRING, or a table containing a HASH field and a RANGE field both of type STRING
    • GSIs / LSIs: Currently, this implementation supports a single GSI with a key schema containing HASH key of type STRING or a single LSI with a key schema containing a RANGE key of type STRING. When a query request contains a reference to an index, the GSI matching the types of the key schema of the referenced index will be used. If none is found, then it will look for a matching LSI.
    • Drop Tables: When dropping a table, if you don't explicitly specify truncateOnDeleteTable=true, then table data will be left behind even after the table is dropped. If a table with the same name is later recreated under the same tenant identifier, the data will be restored. Note that undetermined behavior should be expected in the event that the original table schema is different from the new table schema.
    • Adding/removing GSIs/LSIs: Adding or removing GSIs or LSIs on a table that contains data will cause queries and scans to yield unexpected results.
    • Projections in all query and scan requests default to ProjectionType.ALL.
    • See implementation-specific limitations in the Javadoc on each builder.

References

  1. The Force.com Multitenant Architecture
  2. Multi-Tenant Storage with Amazon DynamoDB
  3. SaaS Storage Strategies

Release Notes

See CHANGELOG.md

Backlog

  • Additional support for the remainder of the API for all 3 impls.
  • Add support for updateTable with table definition invalidation and/or cache timeouts.
  • Add support for choosing using LSI when there is a GSI with matching key schema data types.

mt-dynamo's People

Contributors

msgroi avatar dependabot[bot] avatar horwitzj avatar busjaeger avatar seratch avatar pallavkothari avatar dependabot-support avatar kirby1976 avatar bmariappan avatar

Watchers

 avatar James Cloos avatar  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.