This is a discussion on WAL within the pgsql Admins forums, part of the PostgreSQL category; --> Greetings, Turning of fsync does not mean turn off WAL as well? So why does the xlog files (pg_xlog) ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Greetings, Turning of fsync does not mean turn off WAL as well? So why does the xlog files (pg_xlog) still being recycled? I'm using postgresql 8.0.2. Thanks. ---------------------------(end of broadcast)--------------------------- TIP 7: don't forget to increase your free space map settings |
| ||||
| Dextra - Gustavo Bartz Guedes wrote: > Greetings, > Turning of fsync does not mean turn off WAL as well? So why does the > xlog files (pg_xlog) still being recycled? No, fsync only is used for server crashes. WAL is still used to recover from database crashes when the operating system keeps running. We write to WAL on commit but not to the file system on commit, and WAL cleans that up. -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 359-1001 + If your life is a hard drive, | 13 Roberts Road + Christ can be your backup. | Newtown Square, Pennsylvania 19073 ---------------------------(end of broadcast)--------------------------- TIP 8: explain analyze is your friend |