Append to zipped CSV file

I think that gz supports appending:

  1. you just open a stream to append to a file,
  2. make a gzip output stream, eg with CodecZlib.jl,
  3. write to that stream.

Make sure to test this for critical data though.

1 Like