-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How does it compare to other Python streaming libraries? #22
Comments
Hi @snth, thanks a lot, happy to see you here, and great question! In my opinion, the choice of a library ultimately depends on how naturally and elegantly your use case is implemented with it. I want to outline the fundamental design of each library to provide insight into how it influences the way you structure your logic when working with them:
More comparison material: if you don't come from there you should check the reddit post (Especially the Comparison section at the end) and this comment.
In term of my future involvement into the project, as I leveraged it at my previous job to implement 30 custom ETL pipelines that are running in production, I have the responsability to at least maintain its quality over years. I am glad it is now in the feedback phase, gathering some "this would be a cool choice for my use case but it misses that feature" or "how to implement this use case?". I am grateful that other contributors are starting to come into the loop to extend it, you are more than welcome! 🫡 . Let's minimize its responsabilities and keep it as unopinionated as possible, e.g. this snippet is NOT something the library should look like in the future: Stream.from_csv("sales.csv")
.join(db_type="postgres", db_name="main", schema_name="public", table="user", on_keys=("user_id",))
.to_bigquery("enriched_sales", partition=datetime.date.today(), batchsize=1024) instead, one can:
Thank you for reading and let me know if it makes sense 🙏🏻 ! |
Hi,
First off, this project looks really cool! I'm sorry to be starting with an issue asking for comparisons with similar projects but while I've long been a fan of stream processing type patters, I also want to limit how many projects I keep track off so it would be great to know how you see streamable viz a viz similar projects and where you want streamable to go in future?
Things in my current repertoire that look similar on the surface are:
The text was updated successfully, but these errors were encountered: