<@U01AS8LGX41> you recently got rid of the on disk...
# contributing-to-airbyte
d
@charles you recently got rid of the on disk queue right? so in theory we should no longer have disk space issues?
u
Yup.
u
however, we should see more memory usage since the buffer is now in mem?
u
No. Because of back pressure from the destination the destination memory usage should be the same.
u
thanks!
u
reading the code now - it is more accurate to say the destination memory requirement increased by batch size * average size of record with this change? (since we are keeping up to batch size of the record message in the in memory buffer and all of this was prev in the on disk queue)
u
Nope. It was always the case that a full batch got pulled into memory in the previous implementation.
u
cool!
u
ah yes because we eventually pull everything into memory before writing the messages to the destination
u
is it in 0.22.3?
u
this would be on the destination side, and would affect destinations not using COPY strategies to write data
u
this PR is where the destinations received this update (as well as a checkpointing feature)
u
I did reset 2 PGSQL->BQ connections (all connectors are the latest) and forced syncs. Disk usage still drops only when a sync is about to finish. On the pic it’s dropped when 1 of 2 is finished.