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

@boostercloud/rocket-batch-file-process-aws-infrastructure

v1.0.5

Published

Booster rocket to batch process files.

Downloads

12

Readme

Batch File Booster Rocket for AWS

This package is a configurable Booster rocket for parallel batch file processing. First, it creates a source Object Storage (S3) and a Staging Object Storage(S3).

Every time a new File is uploaded to the Source S3 Bucket, a new Lambda function will be triggered that will:

  • Split the source file in smaller chunks. The chunkSize is defined by the user as input parameter of the rocket (See example below).
  • Persist the new formed chunk file in the Staging Bucket.
  • Persist a new event (only containing fileUri and fileSize) in the Events Store for each chunk created.

Then, for every chunk file dropped in the Staging rocket a new Lambda function will be triggered that will:

  • Read each chunk file line by line and persist a new event in the Events Store for each row.

This event is registered in the Booster application's store as a regular event. Then, you can create event handlers to perform any kind of processing.

You drop your file, and you implement your logic based on an event representing a line of the file.

Disclaimer: Currently the rocket supports CSV and jsonl files.

Usage

Install this package as a dependency in your Booster project.

npm install --save @boostercloud/rocket-batch-file-process-aws-infrastructure

In your Booster config file, pass a RocketDescriptor array to the AWS' Provider initializer configuring the batch file rocket:

import { Booster } from '@boostercloud/framework-core'
import { BoosterConfig } from '@boostercloud/framework-types'

Booster.configure('development', (config: BoosterConfig): void => {
  config.appName = 'test-app'
  config.providerPackage = '@boostercloud/framework-provider-aws'
  config.rockets = [
    {
      packageName: '@boostercloud/rocket-batch-file-process-aws-infrastructure',
      parameters: {
        bucketName: 'test-bucket',
        files: [
          {
            folderName: 'addresses',
            numberOfRecordsInParallel: '100',
          },
        ],
      },
    },
  ]
})

Based on this example let's also define the AddressAdded event and the AddressEntity entity in your Booster project

import { Event } from '@boostercloud/framework-core'
import { UUID } from '@boostercloud/framework-types'

@Event
export class AddressAdded {
  public constructor(
    readonly id: UUID,
    readonly firstName: string,
    readonly lastName: string,
    readonly address: string,
    readonly city: string,
    readonly state: string,
    readonly postalCode: string
  ) {}

  public entityID(): UUID {
    return this.id
  }
}
import { Entity, Reduces } from '@boostercloud/framework-core'
import { AddressAdded } from '../events/address-added'
import { UUID } from '@boostercloud/framework-types'

@Entity
export class AddressEntity {
  public constructor(
    public id: UUID,
    readonly firstName: string,
    readonly lastName: string,
    readonly address: string,
    readonly city: string,
    readonly state: string,
    readonly postalCode: string
  ) {}

  @Reduces(AddressAdded)
  public static reduceAddressAdded(event: AddressAdded, currentAddressEntity?: AddressEntity): AddressEntity {
    return new AddressEntity(
      event.id,
      event.firstName,
      event.lastName,
      event.address,
      event.city,
      event.state,
      event.postalCode
    )
  }
}

The attributes of the AddressAdded and AddressEntity classes are defined by the structure of the input file. This is an example of CSV file that will work with what we defined above:

entityId:id,eventTypeName:AddressAdded,entityTypeName:AddressEntity
id,firstName,lastName,address,city,state,postalCode
1a,John,Doe,120 jefferson st.,Riverside, NJ, 08075
2b,Jack,McGinnis,220 hobo Av.,Phila, PA,09119
3c,"John ""Da Man""",Repici,120 Jefferson St.,Riverside, NJ,08075
4d,Stephen,Tyler,"7452 Terrace ""At the Plaza"" road",SomeTown,SD, 91234
5e,,Blankman,,SomeTown, SD, 00298
6f,"Joan ""the bone"" Anne",Jet,"9th at Terrace plc",Desert City,CO,00123
7g,Juan,Perez,120 jota st.,NY,NY,00678

The first row instructs the rocket which fields should it generate for which events/entities.

The second row of the CSV file defines the headers of the schema and is a 1 to 1 match with the AddressAdded and AddressEntity attributes definition.

If we were to use jsonl files instead of csv, this would be an example

{"entityId":"id","eventTypeName":"AddressAdded","entityTypeName":"AddressEntity"}
{"id": "1a", "firstName": "John", "lastName": "Doe", "address": "120 jefferson st.", "city": "Riverside", "state": "NJ", "postalCode": "08075"}
{"id": "2b", "firstName": "Jack", "lastName": "McGinnis", "address": "220 hobo Av.", "city": "Phila", "state": "PA", "postalCode": "09119"}

The first line of the jsonl file is also used to specify some metadata.

As a result the event handler will look as following

import { EventHandler } from '@boostercloud/framework-core'
import { Register } from '@boostercloud/framework-types'
import { AddressAdded } from '../events/address-added'

@EventHandler(AddressAdded)
export class AddressEventHandler {
  public static async handle(event: AddressAdded, register: Register): Promise<void> {
    ...
  }
}