https://www.orchest.io/ logo
#announcements
Title
# announcements
v

viresh dhawan

10/02/2022, 5:58 AM
Is anyone using orchest for a realtime messaging kind of a system? How is the parallelization achieved here?
r

Rick Lamers

10/03/2022, 11:26 AM
Hi @viresh dhawan Orchest is more oriented towards batch workloads. What you can do is run a fairly low-frequency cron job every 5 minutes that consumes from a message queue, but obviously there's latency then. What are you requirements?
v

viresh dhawan

10/03/2022, 12:28 PM
Hi @Rick Lamers I want to use the Flows in more of a request response cycle, where I have 1000s of users and they can interact with a Bot kind of a model, and the bot executes some code before sending the response, the connections should carry the states from the previous flows.
Does that sound something that can be achieved?
Or do you know of some alternatives?
r

Rick Lamers

10/03/2022, 12:40 PM
Sounds like Streamlit for prototyping and a FastAPI API with a simple web frontend (if you know web coding) would make more sense for an AI chatbot use case.