npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

serverless-create-global-dynamodb-table-tags

v1.0.2

Published

serverless plugin that would create global dynamodb tables for specified tables

Downloads

12,078

Readme

serverless-create-global-dynamodb-table

serverless Build Status npm version Coverage Status

A serverless plugin to automatically creates dynamodb global table(s).

By default, the plugin will deploy the whole service stack in the specified region(s) and then setup global table relation between the dynamodb tables.

Install

npm install --save-dev serverless-create-global-dynamodb-table

Add the plugin to your serverless.yml file:

plugins:
  - serverless-create-global-dynamodb-table

Configuration

custom:
  globalTables:
    version: v1 # optional, default is 'v1' (2017.11.29), please use 'v2' for (2019.11.21) version creation
    regions: # list of regions in which you want to set up global tables
      - region-1
      - region-2
    createStack: false # optional flag, when set to false will not deploy the stack in new region(s) and will create the tables using AWS SDK.
                       # if you use 'createStack: true' with 'version: v2', please add 'Condition' rule to your dynamodb to create it in the main region only,
                       # other regions are going to be replicated automatically from the main region.

NOTE:

  1. When creating global tables with createStack: false, any update the source table config is not replicated to global tables.
  2. version field is backward compatible and not required (the field can be absent).
    If you want to use Global Table (Version 2019.11.21), please use version: v2.
    Also, we don't recommend using v2 over v1 in your existing project. The plugin doesn't support updating from v1 to v2.
    More details about Global Tables you can find in the following link: AWS DynamoDB Global Tables
  3. Here is an example of using conditions, by default it's optional, but it's required for createStack: true with version: v2 setup:
Conditions:
  RegionUSEast1: !Equals [ !Ref "AWS::Region", us-east-1 ]

MyDynamoDBTable:
    Condition: RegionUSEast1
    Type: 'AWS::DynamoDB::Table'
    DeletionPolicy: Retain
    Properties:
    ....

Revisions

  • 2.0.0
    • Updated the package to deploy the service stack in the new region(s) by default
    • Added support to setup auto-scaling on global tables when not using create stack feature.
    • Added unit-tests
  • 2.1.0
    • Added support for PAY_PER_REQUEST billing mode for createStack: true mode
  • 3.1.0
    • Added support to create a new version of Global Table (Version 2019.11.21)