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

@data-heaving/orchestration

v1.0.0

Published

[![Code Coverage](https://codecov.io/gh/DataHeaving/orchestration/branch/develop/graph/badge.svg?flag=pipelines)](https://codecov.io/gh/DataHeaving/orchestration)

Downloads

8

Readme

Data Heaving - Pipelines Orchestration

Code Coverage

This folder contains source code for @data-heaving/orchestration NPM package. The exported entities include:

  • DataPipelineBuilder class to incrementally and declaratively build your data pipelines,
  • from utility method to more easily create instances of generic DataPipelineBuilder class, and
  • DataPipeline class to finalize the pipeline or continue with another pipeline after a syncing point (load result of previous pipeline into memory, do something to it, and continue with another pipeline).

Usage

Include @data-heaving/orchestration dependency in your package.json file.

More information

Here is one example of defining a pipeline which will read data from SQL Server table (using full read, to keep this first example simple), transform the data to GZIPped CSV, and store it to Azure BLOB storage, while splitting it to approximately max 150MB chunks:

import * as blob from "@azure/storage-blob";
import { from } from "@data-heaving/orchestration";
import * as mssqlSource from "@data-heaving/source-sql-mssql";
import csvTransform from "@data-heaving/transform-csv";
import gzipTransform from "@data-heaving/transform-gzip";
import * as blobSink from "@data-heaving/sink-azure-blob";
import * as azureCommon from "@data-heaving/common-azure";
import * as events from "./events";

// Prepare pipeline elements
const sqlPool = mssqlSource.getMSSQLPool(...); // Pool of connections to SQL server, this example will only use 1 connection though
const auth = azureCommon.getEnvOrManagedIDAuth(); // Azure Authentication functionality
const ctStorage = new blob.ContainerClient('url-to-storage-container', auth); // Where to store change tracking information for the table
const eventBuilder = events.createMyEventBuilder(); // See below for more info
// Set up event builder with listeners here, before
const eventEmitter = eventBuilder.createEventEmitter();

// Define the pipeline
const pipeline = from(
  mssqlSource.rowsInTable(sqlPool)
    .fullLoad(eventEmitter)
  ))
  // Transform SQL rows to CSV rows (strings), without header as we don't get table metadata as context
  .simpleTransformEveryDatum(
    csvTransform(),
  )
  // Compress CSV rows (strings) using GZIP
  .complexTransformEveryDatum(gzipTransform())
  // And store them to Azure BLOB storage, splitting to approximately 150MB size each (as optimal for Snowflake ingestion)
  .storeTo(
    blobSink.toAzureBlobStorage({
      getBlobID: ({ tableID, tableProcessingStartTime }) =>
      // Construct folder path by using just table name + load time
        `${azureCommon.sanitizeForBlobPath(
          tableID.tableName,
        )}/${tableProcessingStartTime}`,
      blobClientFactory: (blobID, existingCount) => ({
        maxSizeInKB: 150 * 1024, // Approximate max single compressed file size: 150MB
        client: dataClient.getBlockBlobClient(
          `${blobID}/data-${existingCount}.csv.gz`, // Individual files within the folder will be data-0.csv.gz, data-1.csv.gz, etc.
        ),
      }),
      eventEmitter,
    }),
  )
  .finalizePipeline();

// Invoke the pipeline
await pipeline({
  databaseName: 'myDB',
  schemaName: 'mySchema',
  tableName: 'myTable'
});

It is possible to do incremental loads as well, but examples about this within this README file will be visible later.