-
Notifications
You must be signed in to change notification settings - Fork 60
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
Improve performance with batching #23
Comments
This would be nice feature, otherwise I'm little bit afraid to use it in production on high-load web servers. |
@tomashornak Afraid not, decided to just log to journald with https://pypi.org/project/systemd-logging/ and use promtail from there, but haven't tested it at scale yet |
How are you propagating unique_labels, tags etc in your solution? |
Is there any new about this? It is true that in an async environment with some load a logger that can batch logs becomes necessary :) |
Currently it only uploads one log line with each HTTP request, which does not work well for high velocity logs.
The queued handler could potentially read all the available lines in the queue and upload everything outstanding at once as opposed to popping an item one at a time, and uploading it
The text was updated successfully, but these errors were encountered: