Hi, I'm building a storage engine using Vortex as a file format. As the caller, I want to be able to control writer memory.
my scenario is as follows:
- In the same thread, opened multiple
vortex writers(VortexWriteOptions)
- write the
arow::Recordbatche to multiple writers
- When a memory limit is hit (hard-code setting), I want to flush some of vortex writers without closing them.
So i guess a explicit flush interface is useful.
Hi, I'm building a storage engine using Vortex as a file format. As the caller, I want to be able to control writer memory.
my scenario is as follows:
vortex writers(VortexWriteOptions)arow::Recordbatcheto multiple writersSo i guess a
explicit flush interfaceis useful.