Prev: Make TOAST_TUPLES_PER_PAGE configurable per table.
Next: use of dblink_build_sql_insert() induces a server crash
From: Robert Haas on 7 Feb 2010 23:53 On Sun, Feb 7, 2010 at 10:09 PM, Alvaro Herrera <alvherre(a)commandprompt.com> wrote: > Andres Freund escribió: >> I personally think the fsync on the directory should be added to the stable >> branches - other opinions? >> If wanted I can prepare patches for that. > > Yeah, it seems there are two patches here -- one is the addition of > fsync_fname() and the other is the fsync_prepare stuff. Andres, you want to take a crack at splitting this up? ....Robert -- Sent via pgsql-hackers mailing list (pgsql-hackers(a)postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers
From: Robert Haas on 7 Feb 2010 13:23 On Sun, Feb 7, 2010 at 11:24 AM, Tom Lane <tgl(a)sss.pgh.pa.us> wrote: > Greg Smith <greg(a)2ndquadrant.com> writes: >> This is turning into yet another one of those situations where something >> simple and useful is being killed by trying to generalize it way more >> than it needs to be, given its current goals and its lack of external >> interfaces. There's no catversion bump or API breakage to hinder future >> refactoring if this isn't optimally designed internally from day one. > > I agree that it's too late in the cycle for any major redesign of the > patch. But is it too much to ask to use a less confusing name for the > function? +1. Let's just rename the thing, add some comments, and call it good. ....Robert -- Sent via pgsql-hackers mailing list (pgsql-hackers(a)postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers
From: Robert Haas on 12 Feb 2010 10:49 On Wed, Feb 10, 2010 at 9:27 PM, Andres Freund <andres(a)anarazel.de> wrote: > On Monday 08 February 2010 05:53:23 Robert Haas wrote: >> On Sun, Feb 7, 2010 at 10:09 PM, Alvaro Herrera >> >> <alvherre(a)commandprompt.com> wrote: >> > Andres Freund escribió: >> >> I personally think the fsync on the directory should be added to the >> >> stable branches - other opinions? >> >> If wanted I can prepare patches for that. >> > >> > Yeah, it seems there are two patches here -- one is the addition of >> > fsync_fname() and the other is the fsync_prepare stuff. >> >> Andres, you want to take a crack at splitting this up? > I hope I didnt duplicate Gregs work, but I didnt hear back from him, so... > > Everything <8.1 is hopeless because cp is used there... I didnt see it worth > to replace that. The patch applies cleanly for 8.1 to 8.4 and survives the > regression tests > > Given pg's heavy commit model I didnt see a point to split the patch for 9.0 > as well... I'd probably argue for committing this patch to both HEAD and the back-branches, and doing a second commit with the remaining stuff for HEAD only, but I don't care very much. Greg Stark, have you managed to get your access issues sorted out? If you like, I can do the actual commit on this one. ....Robert -- Sent via pgsql-hackers mailing list (pgsql-hackers(a)postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers
From: Greg Stark on 14 Feb 2010 09:03 On Fri, Feb 12, 2010 at 3:49 PM, Robert Haas <robertmhaas(a)gmail.com> wrote: > Greg Stark, have you managed to get your access issues sorted out? If Yep, will look at this today. -- greg -- Sent via pgsql-hackers mailing list (pgsql-hackers(a)postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers
From: Greg Stark on 14 Feb 2010 10:31 On Sun, Feb 14, 2010 at 2:03 PM, Greg Stark <gsstark(a)mit.edu> wrote: > On Fri, Feb 12, 2010 at 3:49 PM, Robert Haas <robertmhaas(a)gmail.com> wrote: >> Greg Stark, have you managed to get your access issues sorted out? If > > Yep, will look at this today. So I think we have a bigger problem than just copydir.c. It seems to me we should be fsyncing the table space data directories on every checkpoint. Otherwise any newly created relations or removed relations could disappear even though the data in them was fsynced. I'm thinking I should add an _mdfd_opentblspc(reln) call which returns a file descriptor for the tablespace and have mdsync() use that to sync the directory whenever it fsyncs a relation. It would be nice to remember which tablespaces have been fsynced and only fsync them once though, that would need another hash table just for tablespaces. We probably also need to fsync the pg_xlog directory every time we create or rename an xlog segment. Are there any other places we do directory operations which we need to be permanent? -- greg -- Sent via pgsql-hackers mailing list (pgsql-hackers(a)postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers
First
|
Prev
|
Next
|
Last
Pages: 1 2 3 4 Prev: Make TOAST_TUPLES_PER_PAGE configurable per table. Next: use of dblink_build_sql_insert() induces a server crash |