Requested by user in discord.
They are trying to limit Vector memory usage by tweaking the in-memory buffer sizes, but since we only support max_events there it is difficult to estimate unless you know the average event sizes before-hand.
Given we recently added a method for approximating memory use of an event (#8396), I think we could leverage this to support max_bytes on in-memory buffers as well.
Requested by user in discord.
They are trying to limit Vector memory usage by tweaking the in-memory buffer sizes, but since we only support
max_eventsthere it is difficult to estimate unless you know the average event sizes before-hand.Given we recently added a method for approximating memory use of an event (#8396), I think we could leverage this to support
max_byteson in-memory buffers as well.