Re: SCSI vs. IDE performance test
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: "Rick Gigger" <rick@alpinenetworking.com>
Cc: pgsql-general@postgresql.org
Date: 2003-10-27T22:39:40Z
Lists: pgsql-general
"Rick Gigger" <rick@alpinenetworking.com> writes: > It seems to me file system journaling should fix the whole problem by giving > you a record of what was actually commited to disk and what was not. Nope, a journaling FS has exactly the same problem Postgres does (because the underlying "WAL" concept is the same: write the log entries before you change the files they describe). If the drive lies about write order, the FS can be screwed just as badly. Now the FS code might have a low-level way to force write order that Postgres doesn't have access to ... but simply uttering the magic incantation "journaling file system" will not make this problem disappear. regards, tom lane