Is there a reason we require fixed-size WAL files?
Thanks
Thom
--
Sent via pgsql-general mailing list (pgsql-...@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general
> Is there a reason we require fixed-size WAL files?
Currently we reuse the files, which is much easier with fixed size
files.
It might have been interesting once to pass the size at log switch
through to the archiver as a parameter, though we didn't do that at the
time. Streaming is the way forwards, not file-by-file.
--
Simon Riggs www.2ndQuadrant.com
I see! Yes, streaming is far more preferrable. :)
Thanks Simon.
Thom Brown