I'm trying to clean up my code and have moved the models.py file to the top level, as other modules other than the faust ones will use this now. The folder stru
Currently I run several workers using the command line with the following syntax: faust -A <filepath>:app -D <data-log-path> worker -l info -p 6066
I understood how to insert data inside the tables, but then how can i access it? How can i print on screen the data inside 'order_count'?
Does anyone know how to implement a sliding window using Faust? The idea is to count the occurances of a key in a 10, 30, 60, and 300s window, but we need that
Does anyone know how to implement a sliding window using Faust? The idea is to count the occurances of a key in a 10, 30, 60, and 300s window, but we need that
I am working on microservices architecture and using kafka to communicate b/n microservices. I am using python faust to implement producers and consumers. Is it