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
Concat of events (in the memtable) happens at 16384 events in memory. We need to either get rid of concat completely or move it out of ingest / write flow.
The text was updated successfully, but these errors were encountered:
memtable.push
flow outside of the write path. For example make the memtable push async / use a separate thread.disk.push
should be madeaysnc
, so server doesn't wait for the event to be written always. Also discussed in Mitigating blocking IO in highly batched payloads #441The text was updated successfully, but these errors were encountered: