faust
faust copied to clipboard
Python Stream Processing. A Faust fork
poetry add faust-stream ```py import faust class Greeting(faust.Record): from_name: str to_name: str app = faust.App('hello-app', broker='kafka://localhost') topic = app.topic('hello-topic', value_type=Greeting) @app.agent(topic) async def hello(greetings): async for greeting in greetings: print(f'Hello...
## Checklist - [x] I have included information about relevant versions - [ ] I have verified that the issue persists when using the `master` branch of Faust. FWIW I...
Which is the appropriate method for testing timer functions? There are no examples about it in the docs.
## Checklist - [X] I have included information about relevant versions - [X] I have verified that the issue persists when using the `master` branch of Faust. ## Steps to...
We want to implement a liveness check of our Faust application. What is the best gauge of "liveness" of a Faust agent? ## Background The agent is consuming from a...
Shouldn't StreamT have a filter abstract method?
## Checklist - [x] I have included information about relevant versions - [x] I have verified that the issue persists when using the `master` branch of Faust. ## Steps to...
## Checklist - [x] I have included information about relevant versions - [x] I have verified that the issue persists when using the `master` branch of Faust. ## Steps to...
## Steps to reproduce create a faust.App instance during testing for the example, there are only 2 files app.py files with a single topic and an event handler and a...
## Description Adding `on_clear` handlers. Table and GlobalTable share implementation that runs `on_key_del` handler for each key currently stored in the table before cleaning the dictionary. ChangeloggedSet is using existing...