All Projects → tideland → gocells

tideland / gocells

Licence: BSD-3-Clause License
Event Based Applications [DEPRECATED]

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to gocells

eventcatalog
Discover, Explore and Document your Event Driven Architectures powered by Markdown.
Stars: ✭ 392 (+468.12%)
Mutual labels:  eda, event-driven
Dataexplorer
Automate Data Exploration and Treatment
Stars: ✭ 362 (+424.64%)
Mutual labels:  eda, data-analysis
COVID-19-CaseStudy-and-Predictions
This repository is a case study, analysis and visualization of COVID-19 Pandemic spread along with prediction models.
Stars: ✭ 90 (+30.43%)
Mutual labels:  eda, data-analysis
My Journey In The Data Science World
📢 Ready to learn or review your knowledge!
Stars: ✭ 1,175 (+1602.9%)
Mutual labels:  eda, data-analysis
Edaviz
edaviz - Python library for Exploratory Data Analysis and Visualization in Jupyter Notebook or Jupyter Lab
Stars: ✭ 220 (+218.84%)
Mutual labels:  eda, data-analysis
Sweetviz
Visualize and compare datasets, target values and associations, with one line of code.
Stars: ✭ 1,851 (+2582.61%)
Mutual labels:  eda, data-analysis
Pandas Profiling
Create HTML profiling reports from pandas DataFrame objects
Stars: ✭ 8,329 (+11971.01%)
Mutual labels:  eda, data-analysis
beepbeep-3
An event stream processor anyone can use
Stars: ✭ 20 (-71.01%)
Mutual labels:  event-stream, cep
EsperIoT
Small and simple stream-based CEP tool for IoT devices connected to an MQTT broker
Stars: ✭ 18 (-73.91%)
Mutual labels:  cep, event-driven
dudulina
CQRS + Event Sourcing library for PHP
Stars: ✭ 53 (-23.19%)
Mutual labels:  event-driven
hotmap
WebGL Heatmap Viewer for Big Data and Bioinformatics
Stars: ✭ 13 (-81.16%)
Mutual labels:  data-analysis
epump
ePump是一个基于I/O事件通知、非阻塞通信、多路复用、多线程等机制开发的事件驱动模型的 C 语言应用开发框架,利用该框架可以很容易地开发出高性能、大并发连接的服务器程序。
Stars: ✭ 26 (-62.32%)
Mutual labels:  event-driven
Exploratory Data Analysis Visualization Python
Data analysis and visualization with PyData ecosystem: Pandas, Matplotlib Numpy, and Seaborn
Stars: ✭ 78 (+13.04%)
Mutual labels:  eda
underwater
~2kb - ES6 Collection of helper functions. Lodash like
Stars: ✭ 18 (-73.91%)
Mutual labels:  event-driven
python-for-data-and-media-communication-gitbook
An open source book on Python tailed for communication students with zero background
Stars: ✭ 99 (+43.48%)
Mutual labels:  data-analysis
PSelect
PowerShell DSL for aggregating data
Stars: ✭ 27 (-60.87%)
Mutual labels:  data-analysis
ftgogo
FTGOGO - event-driven architecture demonstration application using edat
Stars: ✭ 82 (+18.84%)
Mutual labels:  event-driven
CQELight
CQELight is an entreprise grade extensible and customisable framework for creating software with CQRS, DDD & Event Sourcing patterns
Stars: ✭ 21 (-69.57%)
Mutual labels:  eda
sol
Lightweight MQTT broker, written from scratch. IO is handled by a super simple event loop based upon the most common IO multiplexing implementations.
Stars: ✭ 72 (+4.35%)
Mutual labels:  event-driven
act
ACT hardware description language and core tools.
Stars: ✭ 53 (-23.19%)
Mutual labels:  eda

Tideland Go Cells

Description

The Tideland Go Cells provide a package for the creation of event based applications with networked concurrently working cells. The way how they process the recevied events is defined by behaviors. During the processing of an event a cell can emit multiple events to its subscribers.

I hope you like them. ;)

GitHub release GitHub license GoDoc Sourcegraph Go Report Card

Version

Version 6.0.0-beta.2017-08-20

Packages

Cells

Major package providing the infrastructure for event based applications. It is organized as an environment of networked cells. Each cell is controlled by its behavior implementing the according interface. It receives events, processes them, and can emit a number of new events during this time. Those events are then received by those cells which subscribed to the individual cell.

For the implementation of own behaviors the EventSink, the EventSinkAccessor, and the EventSinkAnalyzer provide help for their tasks.

Behaviors

The project already contains some standard behaviors, the number is still growing.

  • Aggregator aggregates events and emits each aggregated value.
  • Broadcaster simply emits received events to all subscribers.
  • Callback calls a number of passed functions for each received event.
  • Collector collects events which can be processed on demand.
  • Combo waits for a user-defined combination of events.
  • Condition tests events for conditions using a tester function and calls a processor then.
  • Countdown counts a number of events down to zero and executes an event returning function. The event will be emitted then.
  • Counter counts events, the counters can be retrieved.
  • Evaluator evaluates events based on a user-defined function which returns a rating.
  • Filter re-emits received events based on a user-defined filter. It can be selective or excluding.
  • Finite State Machine allows to build finite state machines for events.
  • Key/Value collects and emits payloads grouped by topics.
  • Logger logs received events with level INFO.
  • Mapper maps received events based on a user-defined function to new events.
  • Once calls the once function only for the first event it receives.
  • Pair checks if the event stream contains two matching ones based on a user-based criterion in a given timespan.
  • Rate measures times between a number of criterion fitting events and emits the result.
  • Rate Window checks if a number of events in a given timespan matches a given criterion.
  • Round Robin distributes events round robin to its subscribers.
  • Sequence checks the event stream for a defined sequence of events discovered by a user-defined criterion.
  • Simple Processor allows to not implement a behavior but only use one function for event processing.
  • Status receives and processes status events by other behaviors. Those have to emit it when receiving the topic "status" with a status cell ID as payload.
  • Ticker emits tick events in a defined interval.
  • Topic/Payloads collects payloads per topic, processes them and emits the result payload.

Example

An example application using the Tideland Go Cells to analyze a stream of crypto coin information. It's called coinalyzer. Later extensions may correlate it with news streams.

Contributors

License

Tideland Go Cells is distributed under the terms of the BSD 3-Clause license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].