You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When SIGTERM or SIGINT are received, ingesters wait for the queue of objects to write to the database to be processed, which can take up to two minutes.
It would be nice to speed this up. Several approaches are possible:
reduce the size of the queue.
don't wait for the queue to be emptied. The ingester objects are pickle-able, so this is feasible. The main thing to do would be to change the way in which the database threads are stopped.
The text was updated successfully, but these errors were encountered:
When SIGTERM or SIGINT are received, ingesters wait for the queue of objects to write to the database to be processed, which can take up to two minutes.
It would be nice to speed this up. Several approaches are possible:
The text was updated successfully, but these errors were encountered: