Giter VIP home page Giter VIP logo

stream-schemas's Introduction

Stream Schema

Stream processes are defined as in the following schema.

Schema

Stream Process

  • id: unique stream identifier
  • name: descriptive stream name
  • version: string that describes current version of stream
  • input_streams: list of input stream ids
  • output_streams: list of output stream ids
  • container_id: identitifier for stream process
  • build: string location for build files
interface EventStreamProcess {
  id: string;
  name: string;
  owner: string;
  version: string;
  input_streams: Array<EventStreamProcess>;
  output_streams: Array<EventStreamProcess>;
  container_id: string; 
  build: string;
}

Event Stream

  • id: unique stream identifier
  • process_id: unique identifier for process that creates the stream
  • name: descriptive stream name
  • version: string that describes current version of stream
  • serdes: serialization of the current stream
  • type: represents an enum for StreamType [SOURCE, STATELESS, STATEFUL, QUERY]
interface EventStream {
  id: string;
  process_id: string;
  name: string;
  type: StreamType;
  schema_uri: string;
}

Schema URI

interface SchemaMeta {
  type: string;
  name: string;
  uri: string;
  version: string;
}

Event Stream Schema

  • name: descriptive stream name
  • version: string that describes current version of schema
  • serdes: serialization of the current stream
interface Schema<T> {
  name: string;
  version: string;
  serdes: Serdes<T>;
}

Example

export type FungibleTokenDiscoveryStreamEvent =
  | events.NewToken & {
  ref?: BlockchainReference
};

export const fungibleTokenDiscovery: EventStreamSchema<FungibleTokenDiscoveryStreamEvent> = {
  name: "fungible-token-discovery.streams.proxima.one",
  serdes: serializers.json<FungibleTokenDiscoveryStreamEvent>(),
  version: "0.1.0",
}

stream-schemas's People

Contributors

alekseysavostin avatar chasesmith95 avatar ivanbenko avatar kalabukdima avatar petermangrove avatar sn0wyq avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

mangrovedao

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.