-
Notifications
You must be signed in to change notification settings - Fork 91
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
Expose method to send multiple messages at once #16
Comments
There is no way to send multiple messages at once for now. I think you want an API like this:
I think this kind of multi sending has a difficulty related to error handling. Let's consider the following case:
When you know that the buffer is full , it's difficult to resend the unsent records without any duplication or lost of records for now. |
Hmm, could it not combine all records into a single message which either succeeds/fails? |
fluentd's in_forward can accept multiple events at once so |
Reduce error logging if reconnect is disabled (#16).
message:
[tag, time, record]
or
[tag, [[time,record], [time,record], ...]]
For bulk writing, could we have a way to send the second?
The text was updated successfully, but these errors were encountered: