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

cox-connector-entity-table

v3.0.0

Published

A Cox entity table connector

Downloads

3

Readme

LEO Quick Start Guide: https://github.com/LeoPlatform/Leo

Index

Working with aggregate data

NPM Requirements

  • cox-connector-entity-table: 2.1.0+

Step 1: Loading data into the entities table

Create a new bot to load entities from a queue:

const config = require('leo-config');
const entityTable = require('cox-connector-entity-table');
const queueName = "example_queue_1";

// parameters:
// entity table name
// queue name to read data from
// function to transform the data for insertion into the entities table
entityTable.loadFromQueue(config.entityTableName, queueName, payloadTransform, {
    botId: context.botId,
    batchRecords: 25, 
    merge: false
}).then(() => {
    console.log(`Completed. Remaining Time:`, context.getRemainingTimeInMillis());
    callback();
}).catch(callback);

const payloadTransform = (payload, hash) => {
    // create a hash from the payload id and queueName. This expects payload to have an id.
    // this will create a string that looks like: `${queueName}-[0-9]`
    let hashed = hash(queueName, payload.id);

    // if you have created the entity type id as a string, make sure to convert the id to a string or it will fail.
    // otherwise convert to integer (else it will fail as well).
    let id = payload.id.toString();
    // let id = parseInt(payload.id);

    // The entity table will be filled out with the payload
    return Object.assign({}, payload, {
        id: id, 
        partition: hashed
    });
};

In the package.json, be sure to add the entity table name and set the trigger to be the queue you’re reading from. Example package.json:

{
    "name": "1-SampleEntityLoader",
    "version": "1.0.0",
    "description": "Takes data from a queue and loads into the entity table (DynamoDB)",
    "main": "index.js",
    "directories": {
        "test": "test"
    },  
    "scripts": {
        "test": "leo-cli test . "
    },  
    "config": {
        "leo": {
            "type": "cron",
            "memory": 128,
            "timeout": 300,
            "role": "LeoEntitiesChangesRole",
            "env": {
                "entityTableName": {
                    "Fn::Sub": "${Entities}"
                }   
            },  
            "cron": {
                "settings": {}, 
                "triggers": [
                    "example_queue_1"
                ]   
            }   
        }   
    }   
}

Step 2: Write entity changes to a queue

If you already have a entity table processor bot setup, you can skip this step. For this step, you'll need to have 1 entity change processor that contains a single line:

exports.handler = require("cox-connector-entity-table").tableProcessor;

And make sure the bot has the proper role:

{
  "name": "2-EntityChangeProcessor",
  "version": "1.0.0",
  "description": "Reads from DynamoDB entity table and writes to a queue with entity changes",
  "main": "index.js",
  "directories": {
    "test": "test"
  },  
  "scripts": {
    "test": "leo-cli test . "
  },  
  "config": {
    "leo": {
      "type": "bot",
      "memory": 256,
      "timeout": 30, 
      "role": "LeoEntitiesChangesRole",
      "env": {}, 
      "cron": {
        "settings": {}
      }   
    }   
  }
}

Step 3: Aggregate data and load it into the aggregations table

const leo = require("leo-sdk");
const config = require("leo-config");
const ls = leo.streams;
const agg = require("cox-connector-entity-table/lib/aggregations.js");
// give your entity a name. This will be used in the aggregations table to prefix id and will be appended to bucket.
const entity = 'example';

exports.handler = require("leo-sdk/wrappers/cron.js")((event, context, callback) => {
    let source = Object.assign({
        // this should be the queue name you've been using all along, but with “_changes” appended.
        source: "example_queue_1_changes"
    }, event).source;

    let stats = ls.stats(context.botId, source);
    ls.pipe(
        leo.read(context.botId, source)
        , stats
        // run the aggregator an the aggreations table, pass in the entity name, and transform the payload
        , agg.aggregator(config.aggregationTableName, entity, payload => [transformChanges(payload)])
        , err => {
            if (err) {
                callback(err);
            } else {
                let statsData = stats.get();
                stats.checkpoint((err) => {
                    if (err) {
                        return callback(err);
                    }   
                    if (statsData.units > 0) {
                        leo.bot.checkpoint(context.botId, `system:dynamodb.${config.aggregationTableName.replace(/-[A-Z0-9]{12}$/, "")}.${entity}`, {
                            type: "write",
                            eid: statsData.eid,
                            records: statsData.units,
                            started_timestamp: statsData.started_timestamp,
                            ended_timestamp: statsData.ended_timestamp,
                            source_timestamp: statsData.source_timestamp
                        }, () => {
                            callback();
                        }); 
                    } else {
                        callback();
                    }   
                }); 
            }   
        }
    ); 
});

const transformChanges = payload => ({
    // will be used to prefix id and append to bucket in the aggregations table
    entity: entity,
    id: payload.id,
    aggregate: {
        timestamp: payload.updated,
        // select the bucket(s) you would like to put the data into.
        // available options: alltime, quarterly, monthly, weekly, daily, hourly, minutely, or you can type in a custom dateformat
        // you can aggregate data into more than one timeframe.
        // If you have alltime, every time data is pushed, it will be stored with an alltime postfix
        // If you have quarterly, only 1 data set per quarter will be saved for this object
        // If you have Monthly, only 1 data set per month will be saved for this object
        // etc… for weekly, daily, hourly, minutely.
        buckets: ["alltime", "hourly", "minutely"]
    },  
    data: {
        // always run first on the ID
        id: agg.first(Date.now(), payload.id),
        // store the last payload
        payload: agg.last(Date.now(), payload)
    }   
});

package.json

{
    "name": "SampleEntityChanges",
    "version": "1.0.0",
    "description": "",
    "main": "index.js",
    "directories": {
        "test": "test"
    },
    "scripts": {
        "test": "leo-cli test ."
    },
    "config": {
        "leo": {
            "type": "cron",
            "memory": 128,
            "timeout": 300,
            "role": "LeoEntitiesChangesRole",
            "env": {
                "aggregationTableName": {
                    "Fn::Sub": "${Aggregations}"
                }
            },
            "cron": {
                "settings": {},
                "triggers": [
                    "enriched_numbers_changes"
                ]
            }
        }
    }
}

Step 4: Process old/new aggregate data

Create a bot to process old/new data. It's just a single command with configuration parameters:

exports.handler = require("cox-connector-entity-table").tableOldNewProcessor({
    defaultQueue: "sample_aggregation_changes",
    resourcePrefix: "sample",
    eventSuffix: "_aggregations",
    botSuffix: "_aggregation_changes"
});

package.json

{
  "name": "SampleEntityAggregations",
  "version": "1.0.0",
  "description": "Reads from DynamoDB entity table and writes to a queue with entity changes",
  "main": "index.js",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "test": "leo-cli test . "
  },
  "config": {
    "leo": {
      "type": "bot",
      "memory": 256,
      "timeout": 30,
      "role": "LeoEntitiesChangesRole",
      "env": {},
      "cron": {
        "settings": {}
      }
    }
  }
}

Available Aggregate functions

sum(field)

Gets the sum of all of this field for the selected buckets.

Example
data: {
	totalAmountSpent: sum(payload.paymentAmount)
}

min(field)

Gets the min value for this field for the selected buckets.

Example
data: {
	minPayment: min(payload.paymentAmount)
}

max(field)

Gets the max value for this field for the selected buckets.

Example
data: {
	maxPayment: max(payload.paymentAmount)
}

countChanges(field)

Counts the number of times this field has changed for the selected buckets.

Example

Counting the number of times the temperature has changed in the given time period (see selected buckets).

data: {
	totalChanges: countChanges(payload.currentTemperature)
}

last(date, field)

Gets the last value of the selected field prior to selected date.

Example
data: {
	lastOrderId: last(payload.date_created, payload.id)
}

first(date, field)

Gets the first value of the selected field for the selected bucket (see bucket options).

Example
data: {
	firstOrderId: first(payload.date_created, payload.id)
}

hash(key, function)

Create a hash somehow.

Example

aggregator(tableName, namespace, transformFunction)

Create an aggregation from a selected namespace and transformed data using the available functions.

Example
aggregator(config.aggregationTableName, entity, payload => [transformChanges(payload)])

const transformChanges = payload => ({
	entity: entity,
	id: payload.id,
	aggregate: {
		timestamp: payload.updated,
		buckets: ["alltime", "hourly", "minutely"]
	},
	data: {
		firstOrderId: first(payload.date_created, payload.id),
		lastOrderId: last(payload.date_created, payload.id),
		totalAmountSpent: sum(payload.payments),
	}
});

Available querying functions

getCurrent getCurrentMeta query

Support

Want to hire an expert, or need technical support? Reach out to the Leo team: https://leoinsights.com/contact