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

dynamo2es-lambda

v2.1.0

Published

Configurable AWS Lambda handler to index documents from DynamoDB Streams in Amazon Elasticsearch

Downloads

317

Readme

dynamo2es-lambda

Build Status Coverage Status NPM version Dependencies Status DevDependencies Status

Configurable AWS Lambda handler to index documents from DynamoDB Streams in Amazon Elasticsearch Service.

Installation

$ npm install --save dynamo2es-lambda @elastic/elasticsearch aws-sdk

Usage

dynamo2es-lambda takes options object and returns AWS Lambda handler (using alpha-lambda) that is ready to be connected to any DynamoDB Stream. options object supports the following configuration options:

  • index - { String } - Elasticsearch index to be used for all the documents; optional if indexField is provided
  • type - { String } - Elasticsearch type to be used for all the documents; optional if typeField is provided
  • [elasticsearch] - { Object }
    • [client] - { Object } - an elasticsearch client instance (also works with the legacy 16.x client)
    • [bulk] - { Object } - aside from general Elasticsearch configuration, you can use this field to pass additional parameters to bulk API
  • [indexField] - { String | String[] } - field(s) to be used as an Elasticsearch index; if multiple fields are provided, values are concatenated using separator; required if indexPrefix field is present; can't be used together with index
  • [indexPrefix] - { String } - static string to be used as a prefix to form index together with indexField value
  • [typeField] - { String | String[] } - field(s) to be used as an Elasticsearch type; if multiple fields are provided, values are concatenated using separator; can't be used together with type
  • [idField] - { String | String[] } - field(s) to be used as an Elasticsearch id; if multiple fields are provided, values are concatenated using separator; can't be used together with idResolver [defaults to document's key field(s)]
  • [idResolver] - { Function(record, old) } - optional function to format an Elasticsearch id; can't be used together with idField
  • [versionField] - { String } - field to be used as an external version for Elasticsearch document [by default no version check is performed]
  • [versionResolver] - { Function(record, old) } - optional function to resolve a value to be used as an external version for Elasticsearch document
  • [parentField] - { String } - field to be used as a parent id [no parent by default]
  • [pickFields] - { String | String[] } - by default, the whole document is sent to Elasticsearch for indexing; if this option is provided, only field(s) specified would be sent
  • [separator] - { String } - separator that is used to concatenate fields [defaults to '.']
  • [beforeHook] - { Function(event, context) } - function to be called before any processing is done
  • [afterHook] - { Function(event, context, result, meta) } - function to be called after all the processing is done; meta object contains parsed event data, action description and document that was indexed
  • [recordErrorHook] - { Function(event, context, error) } - function to be called when error occurs while processing specific record; if hook is not provided, error is thrown and processing stops
  • [errorHook] - { Function(event, context, error) } - function to be called when error occurs; if hook is not provided, error is thrown
  • [retryOptions] - { Object } - retry configuration in case Elasticsearch indexing fails (options description can be found here) [is not retried by default]
  • [transformRecordHook] - { Function(record, old) } - optional function to perform custom data processing; accepts single record and old image; record is omitted if function does not return result; useful for reshaping/excluding document before sending it to Elasticsearch

Note: context object, available in hooks, includes [bunyan context extension provided by alpha-lambda-bunyan][alpha-lambda-bunyan-url]

Note: All hooks can be asynchronous

Example

const { Client } = require('@elastic/elasticsearch');
const d2es = require('dynamo2es-lambda');

module.exports.handler = d2es({
  elasticsearch: {
    client: new Client({
      node: 'your-aws-es-host.amazonaws.com',
      // Optional, if you need to sign the request with IAM credentials
      // Connection: require('aws-elasticsearch-connector')
    }),
    bulk: {
      refresh: 'wait_for'
    }
  },
  indexField: ['storeId', 'customerId'],
  type: 'type',
  idField: 'orderId',
  versionField: '_version',
  separator: '-',
  beforeHook: (event, context) => context.log.info({ event }),
  afterHook: (event, context, result) => {
    context.log.info({ result });
    if (result.errors) {
      /* error handling logic */
    }
  },
  errorHook: (event, context, err) => context.log.error({ err }),
  recordErrorHook: (event, context, err) => context.log.error({ err }),
  transformRecordHook: (record, old, context) => {
    return {
      ...record,
      {
        fullName: `${record.firstName} ${record.lastName}`
      }
    };
  }
});

Result Object

dynamo2es-lambda returns raw result provided by the bulk API:

"took": 123,
"errors": false,
"items": [
  {
    "index": {
      "_index": "08c312d0-9bd0-4a43-9748-9469f78e3ea0",
      "_type": "type",
      "_id": "f2f8cef2-031d-401f-a0c5-d6ce50a0bef3",
      "_version": 0,
      "result": "created",
      "_shards": {
          "total": 2,
          "successful": 2,
          "failed": 0
      },
      "created": true,
      "status": 201
    }
  }
]

Note: errors property is set to true only in case of critical errors (e.g. version conflict), but not for non-critical ones (e.g. not found).

License

The MIT License (MIT)

Copyright (c) 2016-2019 Anton Bazhal

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.