@vectorizedio/wasm-api

22.2.3 • Public • Published

vectorized wasm-api

Redpanda coprocessing client library for nodejs

How to use?

  1. Simply include the library and create your own instance of the SimpleTransform class.
const wasmJs = const {
  SimpleTransform,
} = require("@vectorizedio/wasm-api");
const transform = new SimpleTransform();
  1. Specify what topics you want your script to consume from:
transform.subscribe(["my-topic", PolicyInjection.Stored]);
  1. And write your custom transform logic that may filter or transform records in any way you'd like.
transform.processRecord((recordBatch) => {
   return Promise.resolve(new Map(....));
});

Whats the expected output?

Use the map returned from the processRecord method to determine what output topics you'd like to produce onto. For example if the recordBatch arrived from 'my-topic' and your Map contains a single key 'Foo', the transformed recordBatch will be produced onto a materialized topic named 'my-topic.$Foo$'. Materialized topics share all topic attributes with its source topic.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @vectorizedio/wasm-api

      Weekly Downloads

      2

      Version

      22.2.3

      License

      ISC

      Unpacked Size

      5.4 kB

      Total Files

      3

      Last publish

      Collaborators

      • sago2k8
      • vectorizedio