Skip to content

maxfischer2781/pypelined

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pypelined - stream and pipeline processing service

Documentation Status Open Issues

Service and framework for creating and running processing pipelines for data streams, events and chunks. Pipelines of pypelined are composed from individual elements using the chainlet library. They are built in Python configuration files, from custom objects or pre-defined plugins.

import chainlet
from pypelined.conf import pipelines

@chainlet.funclet
def add_time(chunk):
    chunk['tme'] = time.time()
    return chunk

process_chain = Socket(10331) >> decode_json() >> stop_if(lambda value: value.get('rcode') == 0) >> \
    add_time() >> Telegraf(address=('localhost', 10332), name='chunky')
pipelines.append(process_chain)

Once running, pypelined drives all its processing pipelines in an event driven fashion.

About

stream and pipeline processing service

Resources

License

Stars

Watchers

Forks

Packages

No packages published