-
Notifications
You must be signed in to change notification settings - Fork 88
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
processing urls in batches #113
Comments
Can you say a bit more, @rgreinho? What caused you not to succeed, for example? |
We're still investigating, so hopefully we will find solutions soon :) But here are our two big blockers so far:
We are also having problems with the error handling. We could not get the |
@rgreinho any chance you want to join a "vision doc writing session" and talk about this? What time zone are you in? :) |
This week's writing sessions -- I expect we'll schedule more for next week. |
Sure thing! Not sure how that works, or what exactly is expected from participants, but I'll be glad to help. I am in the CDT time zone. |
The basic format is that the host asks you (and others) a bunch of questions about your experiences and then we try to collectively write a story about one of the characters. It's fun. :) |
Basic summary
As a beginner in Rust, I would like to add to this thread with our real-life experience. We are currently facing issues which make me relate to this story (and are preventing us to switch to Rust):
We are trying to rewrite some of our services from Python to Rust and are looking to achieve the following:
What we did not succeed to do so far is:
our server closes the connection and the process panics. Ideally we could
buffer them to send at most 50 at a time. We could split the batches manually,
but we hoped the HTTP client or the
FuturesUnordered
container would handlethat for us.
process. We plan on using tracing-rs for the
logging as it is part of the tokio stack.
For reference, the stackoverflow question where I was looking for help.
Originally posted by @rgreinho in #95 (comment)
The text was updated successfully, but these errors were encountered: