Thread
-
FUNC_MAX_ARGS benchmarks
Neil Conway <nconway@klamath.dyndns.org> — 2002-08-01T22:23:38Z
Ok, here are some crude benchmarks to attempt to measure the effect of changing FUNC_MAX_ARGS. The benchmark script executed: CREATE FUNCTION test_func(int, int, int, int, int, int, int, int) RETURNS INTEGER AS 'SELECT $1 + $2 + $3 + $4 + $5 + $6 + $7 + $8' LANGUAGE 'sql' VOLATILE; Followed by 30,000 calls of: SELECT test_func(i, i, i, i, i, i, i, i); (Where i was the iteration number) I ran the test several times and averaged the results -- the wall-clock time remained very consistent throughout the runs. Each execution of the script took about 30 seconds. The machine was otherwise idle, and all other PostgreSQL settings were at their default values. With FUNC_MAX_ARGS=16: 28.832 28.609 28.726 28.680 (average = 28.6 seconds) With FUNC_MAX_ARGS=32: 29.097 29.337 29.138 28.985 29.231 (average = 29.15 seconds) Cheers, Neil -- Neil Conway <neilconway@rogers.com> PGP Key ID: DB3C29FC
-
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-01T22:25:52Z
Thanks. That looks acceptable to me, and a good test. --------------------------------------------------------------------------- Neil Conway wrote: > Ok, here are some crude benchmarks to attempt to measure the effect of > changing FUNC_MAX_ARGS. The benchmark script executed: > > CREATE FUNCTION test_func(int, int, int, int, int, int, int, int) > RETURNS INTEGER AS 'SELECT $1 + $2 + $3 + $4 + $5 + $6 + $7 + $8' > LANGUAGE 'sql' VOLATILE; > > Followed by 30,000 calls of: > > SELECT test_func(i, i, i, i, i, i, i, i); > > (Where i was the iteration number) > > I ran the test several times and averaged the results -- the wall-clock > time remained very consistent throughout the runs. Each execution of the > script took about 30 seconds. The machine was otherwise idle, and all > other PostgreSQL settings were at their default values. > > With FUNC_MAX_ARGS=16: > > 28.832 > 28.609 > 28.726 > 28.680 > > (average = 28.6 seconds) > > With FUNC_MAX_ARGS=32: > > 29.097 > 29.337 > 29.138 > 28.985 > 29.231 > > (average = 29.15 seconds) > > Cheers, > > Neil > > -- > Neil Conway <neilconway@rogers.com> > PGP Key ID: DB3C29FC > > ---------------------------(end of broadcast)--------------------------- > TIP 4: Don't 'kill -9' the postmaster > -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 853-3000 + If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill, Pennsylvania 19026
-
Re: FUNC_MAX_ARGS benchmarks
lockhart@fourpalms.org — 2002-08-02T05:06:59Z
> > With FUNC_MAX_ARGS=16: > > (average = 28.6 seconds) > > With FUNC_MAX_ARGS=32: > > (average = 29.15 seconds) That is almost a 2 percent cost. Shall we challenge someone to get us back 2 percent from somewhere before the 7.3 release? Optimizing a hot spot might do it... - Thomas -
Re: FUNC_MAX_ARGS benchmarks
Marc Fournier <scrappy@hub.org> — 2002-08-02T06:55:01Z
On Thu, 1 Aug 2002, Thomas Lockhart wrote: > > > With FUNC_MAX_ARGS=16: > > > (average = 28.6 seconds) > > > With FUNC_MAX_ARGS=32: > > > (average = 29.15 seconds) > > That is almost a 2 percent cost. Shall we challenge someone to get us > back 2 percent from somewhere before the 7.3 release? Optimizing a hot > spot might do it... The other side of the coin ... have you, in the past, gained enough performance to allow us a 2% slip for v7.3? Someone mentioned that the SQL spec called for a 128byte NAMELENTH ... is there similar for FUNC_MAX_ARGS that we aren't adhering to? Or is that one semi-arbitrary?
-
Re: FUNC_MAX_ARGS benchmarks
Brett Schwarz <brett_schwarz@yahoo.com> — 2002-08-02T12:13:15Z
On Fri, 2002-08-02 at 09:28, Marc G. Fournier wrote: > On Fri, 2 Aug 2002, Andrew Sullivan wrote: > > > On Fri, Aug 02, 2002 at 10:39:47AM -0400, Tom Lane wrote: > > > > > > Actually, plpgsql is pretty expensive too. The thing to be benchmarking > > > is applications of plain old built-in-C functions and operators. > > > > I thought part of the justification for this was for the OpenACS > > guys; don't they write everything in TCL? > > Nope, the OpenACS stuff relies on plpgsql functions ... the 'TCL' is the > web pages themselves, vs using something like PHP ... I may be wrong, but > I do not believe any of the functions are in TCL ... > Nope, some are written in Tcl. Most are in plpgsql, mainly I believe so that the port between Oracle and PG is easier. --brett > > ---------------------------(end of broadcast)--------------------------- > TIP 2: you can get off all lists at once with the unregister command > (send "unregister YourEmailAddressHere" to majordomo@postgresql.org) -- Brett Schwarz brett_schwarz AT yahoo.com -
Re: FUNC_MAX_ARGS benchmarks
Rod Taylor <rbt@zort.ca> — 2002-08-02T14:18:50Z
Perhaps I'm not remembering correctly, but don't SQL functions still have an abnormally high cost of execution compared to plpgsql? Want to try the same thing with a plpgsql function? On Thu, 2002-08-01 at 18:23, Neil Conway wrote: > Ok, here are some crude benchmarks to attempt to measure the effect of > changing FUNC_MAX_ARGS. The benchmark script executed: > > CREATE FUNCTION test_func(int, int, int, int, int, int, int, int) > RETURNS INTEGER AS 'SELECT $1 + $2 + $3 + $4 + $5 + $6 + $7 + $8' > LANGUAGE 'sql' VOLATILE; > > Followed by 30,000 calls of: > > SELECT test_func(i, i, i, i, i, i, i, i); > > (Where i was the iteration number) > > I ran the test several times and averaged the results -- the wall-clock > time remained very consistent throughout the runs. Each execution of the > script took about 30 seconds. The machine was otherwise idle, and all > other PostgreSQL settings were at their default values. > > With FUNC_MAX_ARGS=16: > > 28.832 > 28.609 > 28.726 > 28.680 > > (average = 28.6 seconds) > > With FUNC_MAX_ARGS=32: > > 29.097 > 29.337 > 29.138 > 28.985 > 29.231 > > (average = 29.15 seconds) > > Cheers, > > Neil > > -- > Neil Conway <neilconway@rogers.com> > PGP Key ID: DB3C29FC > > ---------------------------(end of broadcast)--------------------------- > TIP 4: Don't 'kill -9' the postmaster >
-
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-02T14:39:47Z
Rod Taylor <rbt@zort.ca> writes: > Perhaps I'm not remembering correctly, but don't SQL functions still > have an abnormally high cost of execution compared to plpgsql? > Want to try the same thing with a plpgsql function? Actually, plpgsql is pretty expensive too. The thing to be benchmarking is applications of plain old built-in-C functions and operators. Also, there are two components that I'd be worried about: one is the parser's costs of operator/function lookup, and the other is runtime overhead. Runtime overhead is most likely concentrated in the fmgr.c interface functions, which tend to do MemSets to zero out function call records. I had had a todo item to eliminate the memset in favor of just zeroing what needs to be zeroed, at least in the one- and two- argument cases which are the most heavily trod code paths. This will become significantly more important if FUNC_MAX_ARGS increases. regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Andrew Sullivan <andrew@libertyrms.info> — 2002-08-02T15:32:07Z
On Fri, Aug 02, 2002 at 10:39:47AM -0400, Tom Lane wrote: > > Actually, plpgsql is pretty expensive too. The thing to be benchmarking > is applications of plain old built-in-C functions and operators. I thought part of the justification for this was for the OpenACS guys; don't they write everything in TCL? A -- ---- Andrew Sullivan 87 Mowat Avenue Liberty RMS Toronto, Ontario Canada <andrew@libertyrms.info> M6K 3E3 +1 416 646 3304 x110 -
Re: FUNC_MAX_ARGS benchmarks
Marc Fournier <scrappy@hub.org> — 2002-08-02T16:28:48Z
On Fri, 2 Aug 2002, Andrew Sullivan wrote: > On Fri, Aug 02, 2002 at 10:39:47AM -0400, Tom Lane wrote: > > > > Actually, plpgsql is pretty expensive too. The thing to be benchmarking > > is applications of plain old built-in-C functions and operators. > > I thought part of the justification for this was for the OpenACS > guys; don't they write everything in TCL? Nope, the OpenACS stuff relies on plpgsql functions ... the 'TCL' is the web pages themselves, vs using something like PHP ... I may be wrong, but I do not believe any of the functions are in TCL ...
-
Re: FUNC_MAX_ARGS benchmarks
Daniel C. Wickstrom <danw@rtp.ericsson.se> — 2002-08-02T16:35:10Z
>>>>> "Marc" == Marc G Fournier <scrappy@hub.org> writes: Marc> On Fri, 2 Aug 2002, Andrew Sullivan wrote: >> On Fri, Aug 02, 2002 at 10:39:47AM -0400, Tom Lane wrote: > > >> Actually, plpgsql is pretty expensive too. The thing to be >> benchmarking > is applications of plain old built-in-C >> functions and operators. >> >> I thought part of the justification for this was for the >> OpenACS guys; don't they write everything in TCL? Marc> Nope, the OpenACS stuff relies on plpgsql functions ... the Marc> 'TCL' is the web pages themselves, vs using something like Marc> PHP ... I may be wrong, but I do not believe any of the Marc> functions are in TCL ... That's true. We have intentionally avoided adding pl/tcl functions into the db. The postgresql db stuff relies extensively on plpgsql, while the oracle db stuff relies on pl/sql to provide equivalent functionality. On the other hand, all of the web server stuff is implemented on Aolserver which uses Tcl as a scripting language. Regards, Dan -
Re: FUNC_MAX_ARGS benchmarks
Andrew Sullivan <andrew@libertyrms.info> — 2002-08-02T18:05:56Z
On Fri, Aug 02, 2002 at 12:35:10PM -0400, Daniel Wickstrom wrote: > > On the other hand, all of the web server stuff is implemented on Aolserver > which uses Tcl as a scripting language. I think this is why I was confused. Thanks, all. A -- ---- Andrew Sullivan 87 Mowat Avenue Liberty RMS Toronto, Ontario Canada <andrew@libertyrms.info> M6K 3E3 +1 416 646 3304 x110 -
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-02T19:16:32Z
Andrew Sullivan <andrew@libertyrms.info> writes: > On Fri, Aug 02, 2002 at 10:39:47AM -0400, Tom Lane wrote: >> Actually, plpgsql is pretty expensive too. The thing to be benchmarking >> is applications of plain old built-in-C functions and operators. > I thought part of the justification for this was for the OpenACS > guys; don't they write everything in TCL? Not relevant. The concern about increasing FUNC_MAX_ARGS is the overhead it might add to existing functions that don't need any more arguments. Worst case for that (percentagewise) will be small built-in functions, like say int4add. regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-03T01:17:12Z
Thomas Lockhart wrote: > > > With FUNC_MAX_ARGS=16: > > > (average = 28.6 seconds) > > > With FUNC_MAX_ARGS=32: > > > (average = 29.15 seconds) > > That is almost a 2 percent cost. Shall we challenge someone to get us > back 2 percent from somewhere before the 7.3 release? Optimizing a hot > spot might do it... I wasn't terribly concerned because this wasn't a 2% on normal workload test, it was a 2% bang on function calls as fast as you can test. -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 853-3000 + If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill, Pennsylvania 19026
-
Re: FUNC_MAX_ARGS benchmarks
lockhart@fourpalms.org — 2002-08-03T02:44:34Z
... > I wasn't terribly concerned because this wasn't a 2% on normal workload > test, it was a 2% bang on function calls as fast as you can test. Yeah, good point. But if we can get it back somehow that would be even better :) - Thomas -
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-03T04:05:40Z
Bruce Momjian <pgman@candle.pha.pa.us> writes: > I wasn't terribly concerned because this wasn't a 2% on normal workload > test, it was a 2% bang on function calls as fast as you can test. No, it was a 2% hit on rather slow functions with only one call made per query issued by the client. This is not much of a stress test. A more impressive comparison would be select 2+2+2+2+2+2+ ... (iterate 10000 times or so) and see how much that slows down. regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-03T06:00:47Z
Tom Lane wrote: > No, it was a 2% hit on rather slow functions with only one call made > per query issued by the client. This is not much of a stress test. > > A more impressive comparison would be > > select 2+2+2+2+2+2+ ... (iterate 10000 times or so) > > and see how much that slows down. I ran a crude test as follows (using a PHP script on the same machine. Nothing else going on at the same time): do 100 times select 2+2+2+2+2+2+ ... iterated 9901 times #define INDEX_MAX_KEYS 16, 32, 64, & 128 #define FUNC_MAX_ARGS INDEX_MAX_KEYS make all make install initdb The results were as follows: INDEX_MAX_KEYS 16 32 64 128 -----+-------+------+-------- Time in seconds 48 49 51 55 Joe -
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-03T16:41:35Z
Joe Conway <mail@joeconway.com> writes: > I ran a crude test as follows (using a PHP script on the same machine. > Nothing else going on at the same time): > do 100 times > select 2+2+2+2+2+2+ ... iterated 9901 times > The results were as follows: > INDEX_MAX_KEYS 16 32 64 128 > -----+-------+------+-------- > Time in seconds 48 49 51 55 Okay, that seems like a good basic test. Did you happen to make any notes about the disk space occupied by the database? One thing I was worried about was the bloat that'd occur in pg_proc, pg_index, and pg_proc_proname_args_nsp_index. Aside from costing disk space, this would indirectly slow things down due to more I/O to read these tables --- an effect that probably your test couldn't measure, since it wasn't touching very many entries in any of those tables. Looks like we could go for 32 without much problem, though. regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-03T17:11:50Z
Tom Lane wrote: > Did you happen to make any notes about the disk space occupied by the > database? One thing I was worried about was the bloat that'd occur > in pg_proc, pg_index, and pg_proc_proname_args_nsp_index. Aside from > costing disk space, this would indirectly slow things down due to more > I/O to read these tables --- an effect that probably your test couldn't > measure, since it wasn't touching very many entries in any of those > tables. No, but it's easy enough to repeat. I'll do that today sometime. Joe
-
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-03T18:20:53Z
Hannu Krosing <hannu@tm.ee> writes: > How hard would it be to change pg_proc.proargtypes from oidvector to _oid Lack of btree index support for _oid would be the first hurdle. Even if we wanted to do that work, there'd be some serious breakage of client queries because of the historical differences in output format and subscripting. (oidvector indexes from 0, _oid from 1. Which is pretty bogus, but if the regression tests are anything to judge by there are probably a lot of queries out there that know this.) > This could also get the requested 2% speedup, I'm not convinced that _oid would be faster. All in all, it doesn't seem worth the trouble compared to just kicking FUNC_MAX_ARGS up a notch. At least not right now. I think we've created quite enough system-catalog changes for one release cycle ;-) regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Hannu Krosing <hannu@tm.ee> — 2002-08-03T18:56:56Z
On Sat, 2002-08-03 at 18:41, Tom Lane wrote: > Joe Conway <mail@joeconway.com> writes: > > I ran a crude test as follows (using a PHP script on the same machine. > > Nothing else going on at the same time): > > > do 100 times > > select 2+2+2+2+2+2+ ... iterated 9901 times > > > The results were as follows: > > INDEX_MAX_KEYS 16 32 64 128 > > -----+-------+------+-------- > > Time in seconds 48 49 51 55 > > Okay, that seems like a good basic test. > > Did you happen to make any notes about the disk space occupied by the > database? One thing I was worried about was the bloat that'd occur > in pg_proc, pg_index, and pg_proc_proname_args_nsp_index. Aside from > costing disk space, this would indirectly slow things down due to more > I/O to read these tables --- an effect that probably your test couldn't > measure, since it wasn't touching very many entries in any of those > tables. How hard would it be to change pg_proc.proargtypes from oidvector to _oid and hope that toasting will take care of the rest ? This could also get the requested 2% speedup, not to mention the potential for up to 64K arguments ;) --------------- Hannu
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-03T21:24:45Z
Tom Lane wrote: > Did you happen to make any notes about the disk space occupied by the > database? One thing I was worried about was the bloat that'd occur > in pg_proc, pg_index, and pg_proc_proname_args_nsp_index. Aside from > costing disk space, this would indirectly slow things down due to more > I/O to read these tables --- an effect that probably your test couldn't > measure, since it wasn't touching very many entries in any of those > tables. #define INDEX_MAX_KEYS 16 #define FUNC_MAX_ARGS INDEX_MAX_KEYS du -h --max-depth=1 /opt/data/pgsql/data/base/ 2.7M /opt/data/pgsql/data/base/1 2.7M /opt/data/pgsql/data/base/16862 2.7M /opt/data/pgsql/data/base/16863 2.7M /opt/data/pgsql/data/base/16864 3.2M /opt/data/pgsql/data/base/16865 2.7M /opt/data/pgsql/data/base/16866 17M /opt/data/pgsql/data/base #define INDEX_MAX_KEYS 32 #define FUNC_MAX_ARGS INDEX_MAX_KEYS du -h --max-depth=1 /opt/data/pgsql/data/base/ 3.1M /opt/data/pgsql/data/base/1 3.1M /opt/data/pgsql/data/base/16862 3.1M /opt/data/pgsql/data/base/16863 3.1M /opt/data/pgsql/data/base/16864 3.6M /opt/data/pgsql/data/base/16865 3.1M /opt/data/pgsql/data/base/16866 19M /opt/data/pgsql/data/base #define INDEX_MAX_KEYS 64 #define FUNC_MAX_ARGS INDEX_MAX_KEYS du -h --max-depth=1 /opt/data/pgsql/data/base/ 3.9M /opt/data/pgsql/data/base/1 3.9M /opt/data/pgsql/data/base/16862 3.9M /opt/data/pgsql/data/base/16863 3.9M /opt/data/pgsql/data/base/16864 4.4M /opt/data/pgsql/data/base/16865 3.9M /opt/data/pgsql/data/base/16866 24M /opt/data/pgsql/data/base #define INDEX_MAX_KEYS 128 #define FUNC_MAX_ARGS INDEX_MAX_KEYS du -h --max-depth=1 /opt/data/pgsql/data/base/ 5.7M /opt/data/pgsql/data/base/1 5.7M /opt/data/pgsql/data/base/16862 5.7M /opt/data/pgsql/data/base/16863 5.7M /opt/data/pgsql/data/base/16864 6.3M /opt/data/pgsql/data/base/16865 5.7M /opt/data/pgsql/data/base/16866 35M /opt/data/pgsql/data/base Joe
-
Re: FUNC_MAX_ARGS benchmarks
Hannu Krosing <hannu@tm.ee> — 2002-08-03T21:38:01Z
On Sat, 2002-08-03 at 23:20, Tom Lane wrote: > Hannu Krosing <hannu@tm.ee> writes: > > How hard would it be to change pg_proc.proargtypes from oidvector to _oid > > Lack of btree index support for _oid would be the first hurdle. Is that index really needed, or is it there just to enforce uniqueness ? Would the lookup not be in some internal cache most of the time ? Also, (imho ;) btree index support should be done for all array types which have comparison ops for elements at once (with semantics similar to string) not one by one for individual types. It should be in some ways quite similar to multi-key indexes, so perhaps some code could be borrowed from there. Otoh, It should be a SMOP to write support for b-tree indexes just for _oid :-p , most likely one could re-use code from oidvector ;) > Even if we wanted to do that work, there'd be some serious breakage > of client queries because of the historical differences in output format > and subscripting. (oidvector indexes from 0, _oid from 1. Which is > pretty bogus, but if the regression tests are anything to judge by there > are probably a lot of queries out there that know this.) I would guess that oidvector is sufficiently obscure type and that nobody actually uses oidvector for user tables. It is also only used in two tables and one index in system tables: hannu=# select relname,relkind from pg_class where oid in ( hannu-# select attrelid from pg_attribute where atttypid=30); relname | relkind ---------------------------------+--------- pg_index | r pg_proc_proname_narg_type_index | i pg_proc | r (3 rows) > > This could also get the requested 2% speedup, > > I'm not convinced that _oid would be faster. Neither am I, but it _may_ be that having generally shorter oid arrays wins us enough ;) > All in all, it doesn't seem worth the trouble compared to just kicking > FUNC_MAX_ARGS up a notch. At least not right now. I think we've > created quite enough system-catalog changes for one release cycle ;-) But going to _oid will free us from arbitrary limits on argument count. Or at least from small arbitrary limits, as there will probably still be the at-least-three-btree-keys-must-fit-in-page limit (makes > 2600 args/function) and maybe some other internal limits as well. ------------------ Hannu -
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-04T00:40:05Z
Hannu Krosing wrote: > On Sat, 2002-08-03 at 23:20, Tom Lane wrote: > > Hannu Krosing <hannu@tm.ee> writes: > > > How hard would it be to change pg_proc.proargtypes from oidvector to _oid > > > > Lack of btree index support for _oid would be the first hurdle. > > Is that index really needed, or is it there just to enforce uniqueness ? Needed to look up functions based on their args. The big issue of using arrays is that we don't have cache capability for variable length fields. Until we get that, we are stuck with NAMEDATALEN taking the full length, and oidvector taking the full length. And if we went with variable length, there may be a performance penalty. -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 853-3000 + If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill, Pennsylvania 19026
-
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-04T01:04:50Z
OK, time to get moving folks. Looks like the increase in the function args to 32 and the NAMEDATALEN to 128 has been sufficiently tested. Tom has some ideas on removing some memset() calls for function args to speed things up, but we don't have to wait for that go get going. The end of August is nearing. Is there any reason to delay the change further? --------------------------------------------------------------------------- Joe Conway wrote: > Tom Lane wrote: > > Did you happen to make any notes about the disk space occupied by the > > database? One thing I was worried about was the bloat that'd occur > > in pg_proc, pg_index, and pg_proc_proname_args_nsp_index. Aside from > > costing disk space, this would indirectly slow things down due to more > > I/O to read these tables --- an effect that probably your test couldn't > > measure, since it wasn't touching very many entries in any of those > > tables. > > #define INDEX_MAX_KEYS 16 > #define FUNC_MAX_ARGS INDEX_MAX_KEYS > du -h --max-depth=1 /opt/data/pgsql/data/base/ > 2.7M /opt/data/pgsql/data/base/1 > 2.7M /opt/data/pgsql/data/base/16862 > 2.7M /opt/data/pgsql/data/base/16863 > 2.7M /opt/data/pgsql/data/base/16864 > 3.2M /opt/data/pgsql/data/base/16865 > 2.7M /opt/data/pgsql/data/base/16866 > 17M /opt/data/pgsql/data/base > > #define INDEX_MAX_KEYS 32 > #define FUNC_MAX_ARGS INDEX_MAX_KEYS > du -h --max-depth=1 /opt/data/pgsql/data/base/ > 3.1M /opt/data/pgsql/data/base/1 > 3.1M /opt/data/pgsql/data/base/16862 > 3.1M /opt/data/pgsql/data/base/16863 > 3.1M /opt/data/pgsql/data/base/16864 > 3.6M /opt/data/pgsql/data/base/16865 > 3.1M /opt/data/pgsql/data/base/16866 > 19M /opt/data/pgsql/data/base > > #define INDEX_MAX_KEYS 64 > #define FUNC_MAX_ARGS INDEX_MAX_KEYS > du -h --max-depth=1 /opt/data/pgsql/data/base/ > 3.9M /opt/data/pgsql/data/base/1 > 3.9M /opt/data/pgsql/data/base/16862 > 3.9M /opt/data/pgsql/data/base/16863 > 3.9M /opt/data/pgsql/data/base/16864 > 4.4M /opt/data/pgsql/data/base/16865 > 3.9M /opt/data/pgsql/data/base/16866 > 24M /opt/data/pgsql/data/base > > #define INDEX_MAX_KEYS 128 > #define FUNC_MAX_ARGS INDEX_MAX_KEYS > du -h --max-depth=1 /opt/data/pgsql/data/base/ > 5.7M /opt/data/pgsql/data/base/1 > 5.7M /opt/data/pgsql/data/base/16862 > 5.7M /opt/data/pgsql/data/base/16863 > 5.7M /opt/data/pgsql/data/base/16864 > 6.3M /opt/data/pgsql/data/base/16865 > 5.7M /opt/data/pgsql/data/base/16866 > 35M /opt/data/pgsql/data/base > > > Joe > > > ---------------------------(end of broadcast)--------------------------- > TIP 2: you can get off all lists at once with the unregister command > (send "unregister YourEmailAddressHere" to majordomo@postgresql.org) > -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 853-3000 + If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill, Pennsylvania 19026
-
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-04T01:38:05Z
Hannu Krosing <hannu@tm.ee> writes: >> Lack of btree index support for _oid would be the first hurdle. > Is that index really needed, or is it there just to enforce uniqueness ? Both. > Also, (imho ;) btree index support should be done for all array types > which have comparison ops for elements at once (with semantics similar > to string) not one by one for individual types. Fine, send a patch ;-) >> Even if we wanted to do that work, there'd be some serious breakage >> of client queries because of the historical differences in output format >> and subscripting. (oidvector indexes from 0, _oid from 1. Which is >> pretty bogus, but if the regression tests are anything to judge by there >> are probably a lot of queries out there that know this.) > I would guess that oidvector is sufficiently obscure type and that > nobody actually uses oidvector for user tables. No, you miss my point: client queries that do subscripting on proargtypes will break. Since the regression tests find this a useful thing to do, I suspect there are clients out there that do too. > But going to _oid will free us from arbitrary limits on argument count. I didn't say it wouldn't be a good idea in the long run. I'm saying I don't think it's happening for 7.3, given that Aug 31 is not that far away anymore and that a lot of cleanup work remains undone on other already-committed features. FUNC_MAX_ARGS=32 could happen for 7.3, though. regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-04T02:15:26Z
Bruce Momjian <pgman@candle.pha.pa.us> writes: > OK, time to get moving folks. Looks like the increase in the function > args to 32 and the NAMEDATALEN to 128 has been sufficiently tested. I'm convinced by Joe's numbers that FUNC_MAX_ARGS = 32 shouldn't hurt too much. But have we done equivalent checks on NAMEDATALEN? In particular, do we know what it does to the size of template1? regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-04T02:54:12Z
Tom Lane wrote: > Bruce Momjian <pgman@candle.pha.pa.us> writes: > > OK, time to get moving folks. Looks like the increase in the function > > args to 32 and the NAMEDATALEN to 128 has been sufficiently tested. > > I'm convinced by Joe's numbers that FUNC_MAX_ARGS = 32 shouldn't hurt > too much. But have we done equivalent checks on NAMEDATALEN? In > particular, do we know what it does to the size of template1? No, I thought we saw the number, was 30%? No, we did a test for 64. Can someone get us that number for 128? -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 853-3000 + If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill, Pennsylvania 19026
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-04T06:58:59Z
Bruce Momjian wrote: > Tom Lane wrote: >>I'm convinced by Joe's numbers that FUNC_MAX_ARGS = 32 shouldn't hurt >>too much. But have we done equivalent checks on NAMEDATALEN? In >>particular, do we know what it does to the size of template1? > No, I thought we saw the number, was 30%? No, we did a test for 64. > Can someone get us that number for 128? > I'll do 32, 64, and 128 and report back on template1 size. Joe
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-04T07:18:23Z
Bruce Momjian wrote: > Tom Lane wrote: > >>Bruce Momjian <pgman@candle.pha.pa.us> writes: >> >>>OK, time to get moving folks. Looks like the increase in the function >>>args to 32 and the NAMEDATALEN to 128 has been sufficiently tested. >> >>I'm convinced by Joe's numbers that FUNC_MAX_ARGS = 32 shouldn't hurt >>too much. But have we done equivalent checks on NAMEDATALEN? In >>particular, do we know what it does to the size of template1? > > > No, I thought we saw the number, was 30%? No, we did a test for 64. > Can someone get us that number for 128? > These are all with FUNC_MAX_ARGS = 16. #define NAMEDATALEN 32 du -h --max-depth=1 /opt/data/pgsql/data/base/ 2.7M /opt/data/pgsql/data/base/1 2.7M /opt/data/pgsql/data/base/16862 2.7M /opt/data/pgsql/data/base/16863 2.7M /opt/data/pgsql/data/base/16864 3.2M /opt/data/pgsql/data/base/16865 2.7M /opt/data/pgsql/data/base/16866 2.7M /opt/data/pgsql/data/base/17117 19M /opt/data/pgsql/data/base #define NAMEDATALEN 64 du -h --max-depth=1 /opt/data/pgsql/data/base/ 3.0M /opt/data/pgsql/data/base/1 3.0M /opt/data/pgsql/data/base/16863 3.0M /opt/data/pgsql/data/base/16864 3.0M /opt/data/pgsql/data/base/16865 3.5M /opt/data/pgsql/data/base/16866 3.0M /opt/data/pgsql/data/base/16867 19M /opt/data/pgsql/data/base #define NAMEDATALEN 128 du -h --max-depth=1 /opt/data/pgsql/data/base/ 3.8M /opt/data/pgsql/data/base/1 3.8M /opt/data/pgsql/data/base/16863 3.8M /opt/data/pgsql/data/base/16864 3.8M /opt/data/pgsql/data/base/16865 4.4M /opt/data/pgsql/data/base/16866 3.8M /opt/data/pgsql/data/base/16867 23M /opt/data/pgsql/data/base Joe
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-04T23:17:49Z
Joe Conway wrote: > These are all with FUNC_MAX_ARGS = 16. > > #define NAMEDATALEN 32 > du -h --max-depth=1 /opt/data/pgsql/data/base/ > 2.7M /opt/data/pgsql/data/base/1 > 2.7M /opt/data/pgsql/data/base/16862 > 2.7M /opt/data/pgsql/data/base/16863 > 2.7M /opt/data/pgsql/data/base/16864 > 3.2M /opt/data/pgsql/data/base/16865 > 2.7M /opt/data/pgsql/data/base/16866 > 2.7M /opt/data/pgsql/data/base/17117 > 19M /opt/data/pgsql/data/base > FWIW, this is FUNC_MAX_ARGS = 32 *and* NAMEDATALEN 128 du -h --max-depth=1 /opt/data/pgsql/data/base/ 4.1M /opt/data/pgsql/data/base/1 4.1M /opt/data/pgsql/data/base/16863 4.1M /opt/data/pgsql/data/base/16864 4.1M /opt/data/pgsql/data/base/16865 4.8M /opt/data/pgsql/data/base/16866 4.1M /opt/data/pgsql/data/base/16867 26M /opt/data/pgsql/data/base Joe
-
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-05T03:56:25Z
Joe Conway <mail@joeconway.com> writes: > These are all with FUNC_MAX_ARGS = 16. > #define NAMEDATALEN 32 > 2.7M /opt/data/pgsql/data/base/1 > #define NAMEDATALEN 64 > 3.0M /opt/data/pgsql/data/base/1 > #define NAMEDATALEN 128 > 3.8M /opt/data/pgsql/data/base/1 Based on Joe's numbers, I'm kind of thinking that we should go for FUNC_MAX_ARGS=32 and NAMEDATALEN=64 as defaults in 7.3. Although NAMEDATALEN=128 would be needed for full SQL compliance, the space penalty seems severe. I'm thinking we should back off until someone wants to do the legwork needed to make the name type be truly variable-length. Comments? regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-05T04:08:25Z
Tom Lane wrote: > Joe Conway <mail@joeconway.com> writes: > >>These are all with FUNC_MAX_ARGS = 16. > > >>#define NAMEDATALEN 32 >>2.7M /opt/data/pgsql/data/base/1 > > >>#define NAMEDATALEN 64 >>3.0M /opt/data/pgsql/data/base/1 > > >>#define NAMEDATALEN 128 >>3.8M /opt/data/pgsql/data/base/1 > > > Based on Joe's numbers, I'm kind of thinking that we should go for > FUNC_MAX_ARGS=32 and NAMEDATALEN=64 as defaults in 7.3. > > Although NAMEDATALEN=128 would be needed for full SQL compliance, > the space penalty seems severe. I'm thinking we should back off > until someone wants to do the legwork needed to make the name type > be truly variable-length. FWIW, I reran the speed benchmark (select 2+2+2...) with FUNC_MAX_ARGS=32 and NAMEDATALEN=128 and still got 49 seconds, i.e. NAMEDATALEN=128 didn't impact performance of that particular test. The results were as follows: INDEX_MAX_KEYS 16 32 64 128 -----+-------+------+-------- Time in seconds 48 49 51 55 ^^^^^^^^ reran with NAMEDATALEN=128, same result What will the impact be on a medium to large production database? In other words, is the bloat strictly to the system catalogs based on how extensive your database schema (bad choice of words now, but I don't know a better term for this) is? Or will the bloat scale with the size of the database including data? Joe -
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-05T05:21:37Z
Tom Lane wrote: > Joe Conway <mail@joeconway.com> writes: > > These are all with FUNC_MAX_ARGS = 16. > > > #define NAMEDATALEN 32 > > 2.7M /opt/data/pgsql/data/base/1 > > > #define NAMEDATALEN 64 > > 3.0M /opt/data/pgsql/data/base/1 > > > #define NAMEDATALEN 128 > > 3.8M /opt/data/pgsql/data/base/1 > > Based on Joe's numbers, I'm kind of thinking that we should go for > FUNC_MAX_ARGS=32 and NAMEDATALEN=64 as defaults in 7.3. > > Although NAMEDATALEN=128 would be needed for full SQL compliance, > the space penalty seems severe. I'm thinking we should back off > until someone wants to do the legwork needed to make the name type > be truly variable-length. I prefer 64 for NAMEDATALEN myself. Standards compliance is nice, but realistically it seems a shame to waste so much space on an excessive length that will never be used. -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 853-3000 + If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill, Pennsylvania 19026
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-05T06:08:17Z
Bruce Momjian wrote: > I prefer 64 for NAMEDATALEN myself. Standards compliance is nice, but > realistically it seems a shame to waste so much space on an excessive > length that will never be used. > But is the space wasted really never more than a few MB's, even if the database itself is say 1 GB? If so, and if the speed penalty is small to non-existent, I'd rather be spec compliant. That way nobody has a good basis for complaining ;-) I guess I'll try another test with a larger data-set. Joe
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-05T06:36:50Z
Joe Conway wrote: > But is the space wasted really never more than a few MB's, even if the > database itself is say 1 GB? If so, and if the speed penalty is small to > non-existent, I'd rather be spec compliant. That way nobody has a good > basis for complaining ;-) > > I guess I'll try another test with a larger data-set. > Starting with pg_dumpall file at 138M. #define INDEX_MAX_KEYS 16 #define FUNC_MAX_ARGS INDEX_MAX_KEYS #define NAMEDATALEN 32 du -h --max-depth=1 /opt/data/pgsql/data/base/ 2.7M /opt/data/pgsql/data/base/1 2.7M /opt/data/pgsql/data/base/16862 119M /opt/data/pgsql/data/base/16863 3.1M /opt/data/pgsql/data/base/696496 3.1M /opt/data/pgsql/data/base/696623 3.1M /opt/data/pgsql/data/base/696750 2.8M /opt/data/pgsql/data/base/696877 2.8M /opt/data/pgsql/data/base/696889 2.8M /opt/data/pgsql/data/base/696901 2.8M /opt/data/pgsql/data/base/696912 18M /opt/data/pgsql/data/base/696924 3.0M /opt/data/pgsql/data/base/878966 2.7M /opt/data/pgsql/data/base/881056 2.7M /opt/data/pgsql/data/base/881075 2.8M /opt/data/pgsql/data/base/881078 3.1M /opt/data/pgsql/data/base/881093 3.1M /opt/data/pgsql/data/base/881225 2.8M /opt/data/pgsql/data/base/881604 3.3M /opt/data/pgsql/data/base/881620 31M /opt/data/pgsql/data/base/881807 31M /opt/data/pgsql/data/base/1031939 32M /opt/data/pgsql/data/base/1181250 31M /opt/data/pgsql/data/base/1332676 309M /opt/data/pgsql/data/base #define INDEX_MAX_KEYS 32 #define FUNC_MAX_ARGS INDEX_MAX_KEYS #define NAMEDATALEN 128 du -h --max-depth=1 /opt/data/pgsql/data/base/ 4.1M /opt/data/pgsql/data/base/1 4.1M /opt/data/pgsql/data/base/16863 121M /opt/data/pgsql/data/base/16864 4.6M /opt/data/pgsql/data/base/696497 4.6M /opt/data/pgsql/data/base/696624 4.6M /opt/data/pgsql/data/base/696751 4.2M /opt/data/pgsql/data/base/696878 4.2M /opt/data/pgsql/data/base/696890 4.2M /opt/data/pgsql/data/base/696902 4.2M /opt/data/pgsql/data/base/696913 20M /opt/data/pgsql/data/base/696925 4.5M /opt/data/pgsql/data/base/878967 4.2M /opt/data/pgsql/data/base/881057 4.1M /opt/data/pgsql/data/base/881076 4.2M /opt/data/pgsql/data/base/881079 4.7M /opt/data/pgsql/data/base/881094 4.7M /opt/data/pgsql/data/base/881226 4.2M /opt/data/pgsql/data/base/881605 4.9M /opt/data/pgsql/data/base/881621 33M /opt/data/pgsql/data/base/881808 33M /opt/data/pgsql/data/base/1031940 33M /opt/data/pgsql/data/base/1181251 33M /opt/data/pgsql/data/base/1332677 343M /opt/data/pgsql/data/base So the 119MB database only grows to 121MB. In fact, each of the > 10MB databases seems to grow only about 2MB. Based on this, I'd go with: #define INDEX_MAX_KEYS 32 #define FUNC_MAX_ARGS INDEX_MAX_KEYS #define NAMEDATALEN 128 and take spec compliance. Joe
-
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-05T13:33:21Z
Joe Conway <mail@joeconway.com> writes: > Tom Lane wrote: >> Although NAMEDATALEN=128 would be needed for full SQL compliance, >> the space penalty seems severe. > What will the impact be on a medium to large production database? In > other words, is the bloat strictly to the system catalogs based on how > extensive your database schema (bad choice of words now, but I don't > know a better term for this) is? Or will the bloat scale with the size > of the database including data? The bloat would scale with the size of your schema, not with the amount of data in your tables (unless you have "name" columns in your user tables, which is something we've always discouraged). template1 is clearly a worst-case scenario, percentagewise, for NAMEDATALEN. I'm quite prepared to believe that the net cost is "a couple megs per database" more or less independent of how much data you store. Maybe that's negligible these days, or maybe it isn't ... regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-05T15:18:38Z
Tom Lane wrote: > The bloat would scale with the size of your schema, not with the amount > of data in your tables (unless you have "name" columns in your user > tables, which is something we've always discouraged). template1 is > clearly a worst-case scenario, percentagewise, for NAMEDATALEN. > > I'm quite prepared to believe that the net cost is "a couple megs per > database" more or less independent of how much data you store. Maybe > that's negligible these days, or maybe it isn't ... Seems to me it's negligible for the vast majority of applications. I *know* it is for any appplication that I have. We can always tell people who are doing embedded application work to bump *down* NAMEDATALEN. Joe
-
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-05T15:26:54Z
Joe Conway <mail@joeconway.com> writes: > We can always tell people who are doing embedded application work to > bump *down* NAMEDATALEN. Good point. Okay, I'm OK with 128 ... regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-05T16:21:36Z
Tom Lane wrote: > Joe Conway <mail@joeconway.com> writes: > > We can always tell people who are doing embedded application work to > > bump *down* NAMEDATALEN. > > Good point. Okay, I'm OK with 128 ... Yes, good point. I think the major issue is pushing stuff out of the cache because we have longer names. Did we see performance hit at 128? Seems it more that just disk space. I don't have trouble with 128, but other than standards compliance, I can't see many people getting >64 names. -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 853-3000 + If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill, Pennsylvania 19026
-
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-05T16:25:37Z
Bruce Momjian <pgman@candle.pha.pa.us> writes: > I don't have trouble with 128, but other than standards compliance, I > can't see many people getting >64 names. One nice thing about 128 is you can basically forget about the weird truncation behavior on generated sequence names for serial columns --- "tablename_colname_seq" will be correct for essentially all practical cases. At 64 you might still need to think about it. regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-05T16:54:35Z
Tom Lane wrote: > Bruce Momjian <pgman@candle.pha.pa.us> writes: > > I don't have trouble with 128, but other than standards compliance, I > > can't see many people getting >64 names. > > One nice thing about 128 is you can basically forget about the weird > truncation behavior on generated sequence names for serial columns > --- "tablename_colname_seq" will be correct for essentially all > practical cases. At 64 you might still need to think about it. Oh, good point. Does anyone remember the performance hit for 64 vs 128 namedatalen? -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 853-3000 + If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill, Pennsylvania 19026
-
Re: FUNC_MAX_ARGS benchmarks
Peter Eisentraut <peter_e@gmx.net> — 2002-08-05T19:40:30Z
Joe Conway writes: > I'd rather be spec compliant. That way nobody has a good basis for > complaining ;-) How long until someone figures out that to be spec-compliant you need NAMEDATALEN 129? ;-) -- Peter Eisentraut peter_e@gmx.net
-
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-05T21:31:03Z
Well, in fact it's not just a question of disk space. The following numbers are stats for total elapsed time of "make installcheck" over ten trials: NAMEDATALEN = 32, FUNC_MAX_ARGS = 16 min | max | avg | stddev -------+-------+--------+------------------- 25.59 | 27.61 | 26.612 | 0.637003401351409 NAMEDATALEN = 64, FUNC_MAX_ARGS = 32 min | max | avg | stddev -------+-------+--------+----------------- 26.32 | 29.27 | 27.415 | 1.0337982824947 NAMEDATALEN = 128, FUNC_MAX_ARGS = 32 min | max | avg | stddev -------+-------+--------+------------------ 27.44 | 30.79 | 29.603 | 1.26148105195622 I'm not sure about the trend of increasing standard deviation --- that may reflect more disk I/O being done, and perhaps more checkpoints occurring during the test. But in any case it's clear that there's a nontrivial runtime cost here. Does a 10% slowdown bother you? regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-05T23:08:40Z
Tom Lane wrote: > Well, in fact it's not just a question of disk space. > > The following numbers are stats for total elapsed time of "make > installcheck" over ten trials: > <snip> > I'm not sure about the trend of increasing standard deviation --- that > may reflect more disk I/O being done, and perhaps more checkpoints > occurring during the test. But in any case it's clear that there's a > nontrivial runtime cost here. Does a 10% slowdown bother you? Hmmm -- didn't Neil do some kind of test that had different results, i.e. not much performance difference? I wonder if the large number of DDL commands in installcheck doesn't skew the results against longer NAMEDATALEN compared to other benchmarks? # pwd /opt/src/pgsql/src/test/regress/sql # grep -i 'CREATE\|DROP' * | wc -l 1114 Joe -
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-05T23:46:03Z
Joe Conway <mail@joeconway.com> writes: >> I'm not sure about the trend of increasing standard deviation --- that >> may reflect more disk I/O being done, and perhaps more checkpoints >> occurring during the test. But in any case it's clear that there's a >> nontrivial runtime cost here. Does a 10% slowdown bother you? > Hmmm -- didn't Neil do some kind of test that had different results, > i.e. not much performance difference? Well, one person had reported a 10% slowdown in pgbench, but Neil saw a 10% speedup. Given the well-known difficulty of getting any reproducible numbers out of pgbench, I don't trust either number very far; but unless some other folk are willing to repeat the experiment I think we can only conclude that pgbench isn't affected much by NAMEDATALEN. > I wonder if the large number of > DDL commands in installcheck doesn't skew the results against longer > NAMEDATALEN compared to other benchmarks? Depends on what you consider skewed, I suppose. pgbench touches only a very small number of relations, and starts no new backends over the length of its run, thus everything gets cached and stays cached. At best I'd consider it an existence proof that some applications won't be hurt. Do you have another application you'd consider a more representative benchmark? regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-06T00:45:33Z
Tom Lane wrote: > Depends on what you consider skewed, I suppose. pgbench touches only a > very small number of relations, and starts no new backends over the > length of its run, thus everything gets cached and stays cached. At > best I'd consider it an existence proof that some applications won't be > hurt. > > Do you have another application you'd consider a more representative > benchmark? I'm not sure. Maybe OSDB? I'll see if I can get it running over the next few days. Anyone else have other suggestions? Joe
-
Re: FUNC_MAX_ARGS benchmarks
Tatsuo Ishii <t-ishii@sra.co.jp> — 2002-08-06T02:08:41Z
> I don't have trouble with 128, but other than standards compliance, I > can't see many people getting >64 names. Don't forget that 128 is for *bytes*, not for characters(this is still ture with 7.3). In CJK(Chinese, Japanese and Korean) single character can eat up to 3 bytes if the encoding is UTF-8. -- Tatsuo Ishii
-
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-06T02:54:39Z
Tatsuo Ishii <t-ishii@sra.co.jp> writes: >> I don't have trouble with 128, but other than standards compliance, I >> can't see many people getting >64 names. > Don't forget that 128 is for *bytes*, not for characters(this is still > ture with 7.3). In CJK(Chinese, Japanese and Korean) single character > can eat up to 3 bytes if the encoding is UTF-8. True, but in those languages a typical name would be many fewer characters than it is in Western alphabets, no? I'd guess (with no evidence though) that the effect would more or less cancel out. regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-06T06:10:25Z
As long as we allocate the full length for the funcarg and name types, we are going to have performance/space issues with increasing them, especially since we are looking at doubling or quadrupling those values. You can say that the test below isn't a representative benchmark, but I am sure it is typical of _some_ of our users, so it may still be a significant test. We don't get good benchmark numbers by accident. It is this type of analysis that keeps us sharp. I think funcargs of 32 and name of 64 is the way to go for 7.3. If we find we need longer names or we find we can make them variable length, we can revisit the issue. However, variable length has a performance cost as well, so it is not certain we will ever make them variable length. --------------------------------------------------------------------------- Tom Lane wrote: > Well, in fact it's not just a question of disk space. > > The following numbers are stats for total elapsed time of "make > installcheck" over ten trials: > > NAMEDATALEN = 32, FUNC_MAX_ARGS = 16 > > min | max | avg | stddev > -------+-------+--------+------------------- > 25.59 | 27.61 | 26.612 | 0.637003401351409 > > NAMEDATALEN = 64, FUNC_MAX_ARGS = 32 > > min | max | avg | stddev > -------+-------+--------+----------------- > 26.32 | 29.27 | 27.415 | 1.0337982824947 > > NAMEDATALEN = 128, FUNC_MAX_ARGS = 32 > > min | max | avg | stddev > -------+-------+--------+------------------ > 27.44 | 30.79 | 29.603 | 1.26148105195622 > > I'm not sure about the trend of increasing standard deviation --- that > may reflect more disk I/O being done, and perhaps more checkpoints > occurring during the test. But in any case it's clear that there's a > nontrivial runtime cost here. Does a 10% slowdown bother you? > > regards, tom lane > > ---------------------------(end of broadcast)--------------------------- > TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org > -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 853-3000 + If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill, Pennsylvania 19026
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-06T06:20:24Z
Bruce Momjian wrote: > As long as we allocate the full length for the funcarg and name types, > we are going to have performance/space issues with increasing them, > especially since we are looking at doubling or quadrupling those values. > > You can say that the test below isn't a representative benchmark, but I > am sure it is typical of _some_ of our users, so it may still be a > significant test. We don't get good benchmark numbers by accident. It > is this type of analysis that keeps us sharp. I'm running the OSDB benchmark right now. So far the Single user test results are done, and the overall results is like this: NAMEDATALEN = 32, FUNC_MAX_ARGS = 32 "Single User Test" 2205.89 seconds (0:36:45.89) NAMEDATALEN = 128, FUNC_MAX_ARGS = 32 "Single User Test" 2256.16 seconds (0:37:36.16) So the difference in performance for this benchmark is not nearly so large, more like 2%. The multi-user portion of the second test is running right now, so I'll report final results in the morning. I might also run this on the same machine against 7.2.1 to see where we would stand in comparison to the last release. But that won't happen until tomorrow some time. Joe
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-06T07:00:29Z
Joe Conway wrote: > Bruce Momjian wrote: > >> As long as we allocate the full length for the funcarg and name types, >> we are going to have performance/space issues with increasing them, >> especially since we are looking at doubling or quadrupling those values. >> >> You can say that the test below isn't a representative benchmark, but I >> am sure it is typical of _some_ of our users, so it may still be a >> significant test. We don't get good benchmark numbers by accident. It >> is this type of analysis that keeps us sharp. > > > I'm running the OSDB benchmark right now. So far the Single user test > results are done, and the overall results is like this: > > NAMEDATALEN = 32, FUNC_MAX_ARGS = 32 > "Single User Test" 2205.89 seconds (0:36:45.89) > > NAMEDATALEN = 128, FUNC_MAX_ARGS = 32 > "Single User Test" 2256.16 seconds (0:37:36.16) > > So the difference in performance for this benchmark is not nearly so > large, more like 2%. The multi-user portion of the second test is > running right now, so I'll report final results in the morning. I might > also run this on the same machine against 7.2.1 to see where we would > stand in comparison to the last release. But that won't happen until > tomorrow some time. > Here's the multi-user test summary. Very little difference. The details of the OSDB output are attached. NAMEDATALEN = 32, FUNC_MAX_ARGS = 32 "Multi-User Test" 3403.84 seconds (0:56:43.84) NAMEDATALEN = 128, FUNC_MAX_ARGS = 32 "Multi-User Test" 3412.18 seconds (0:56:52.18) Joe
-
Re: FUNC_MAX_ARGS benchmarks
Sander Steffann <steffann@nederland.net> — 2002-08-06T09:05:52Z
Hi, > Here's the multi-user test summary. Very little difference. The details > of the OSDB output are attached. > > NAMEDATALEN = 32, FUNC_MAX_ARGS = 32 > "Multi-User Test" 3403.84 seconds (0:56:43.84) > > NAMEDATALEN = 128, FUNC_MAX_ARGS = 32 > "Multi-User Test" 3412.18 seconds (0:56:52.18) Seeing these numbers, I would definitely vote for standards-compliance with NAMEDATALEN = 128. 8.34 seconds more on 3400 seconds is just a 0.25% increase. Sander.
-
Re: FUNC_MAX_ARGS benchmarks
Nigel J. Andrews <nandrews@investsystems.co.uk> — 2002-08-06T09:47:21Z
On Tue, 6 Aug 2002, Bruce Momjian wrote: > > As long as we allocate the full length for the funcarg and name types, > we are going to have performance/space issues with increasing them, > especially since we are looking at doubling or quadrupling those values. > > [snip] > > I think funcargs of 32 and name of 64 is the way to go for 7.3. If we > find we need longer names or we find we can make them variable length, > we can revisit the issue. However, variable length has a performance > cost as well, so it is not certain we will ever make them variable > length. I was thinking of looking at turning names to varchars/text in order to test the performance hit [in the first instance]. However doing a find . -name \*\.\[ch\] | xargs grep NAMEDATALEN | wc -l gives 185 hits and some of those are setting other macros. It seems to me there is a fair amount of work involved in just getting variable length names into the system so that they can be tested. -- Nigel J. Andrews Director --- Logictree Systems Limited Computer Consultants
-
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-06T13:36:48Z
"Nigel J. Andrews" <nandrews@investsystems.co.uk> writes: > I was thinking of looking at turning names to varchars/text in order to test > the performance hit [in the first instance]. However doing a > find . -name \*\.\[ch\] | xargs grep NAMEDATALEN | wc -l > gives 185 hits and some of those are setting other macros. It seems to > me there is a fair amount of work involved in just getting variable > length names into the system so that they can be tested. And that is not even the tip of the iceberg. The real reason that NAME is fixed-length is so that it can be accessed as a member of a C structure. Moving NAME into the variable-length category would make it much more painful to access than it is now, and would require rearranging the field order in every system catalog that has a name field. regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-06T14:17:20Z
Hannu Krosing <hannu@tm.ee> writes: > I'm not pretending to know anything about it, but can't this be made > into a pointer that is accessed as a member of a C structure. This > should not need rearranging the field order. You can't store pointers on disk. At least not usefully. > From what I remember the main concern was lack of support for varlen > types in cache manager (whatever it means) ? That would be a localized fix; I'm not very worried about it. A system-wide change in notation for getting at NAMEs would be quite painful, though. regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Hannu Krosing <hannu@tm.ee> — 2002-08-06T15:02:16Z
On Tue, 2002-08-06 at 15:36, Tom Lane wrote: > "Nigel J. Andrews" <nandrews@investsystems.co.uk> writes: > > I was thinking of looking at turning names to varchars/text in order to test > > the performance hit [in the first instance]. However doing a > > find . -name \*\.\[ch\] | xargs grep NAMEDATALEN | wc -l > > gives 185 hits and some of those are setting other macros. It seems to > > me there is a fair amount of work involved in just getting variable > > length names into the system so that they can be tested. > > And that is not even the tip of the iceberg. The real reason that NAME > is fixed-length is so that it can be accessed as a member of a C > structure. I'm not pretending to know anything about it, but can't this be made into a pointer that is accessed as a member of a C structure. This should not need rearranging the field order. And if we were lucky enough, then change from char[32] to char* will be invisible for most places that use it. > Moving NAME into the variable-length category would make it > much more painful to access than it is now, and would require > rearranging the field order in every system catalog that has a name field. From what I remember the main concern was lack of support for varlen types in cache manager (whatever it means) ? --------------- Hannu
-
Re: FUNC_MAX_ARGS benchmarks
Peter Eisentraut <peter_e@gmx.net> — 2002-08-06T21:18:06Z
Joe Conway writes: > Here's the multi-user test summary. Very little difference. The details > of the OSDB output are attached. The fact that the OSDB benchmark has just about the least possible test coverage of identifier handling and you still get a 2% performance drop is something I'm concerned about. -- Peter Eisentraut peter_e@gmx.net
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-06T21:25:40Z
Peter Eisentraut wrote: > Joe Conway writes: >>Here's the multi-user test summary. Very little difference. The details >>of the OSDB output are attached. > > The fact that the OSDB benchmark has just about the least possible test > coverage of identifier handling and you still get a 2% performance drop is > something I'm concerned about. > Of course that's on the single user test only. In the multi-user test the two are neck-and-neck. If you really want to be concerned, see the attached. This lines up results from: REL7_2_STABLE with NAMEDATALEN = 32 and FUNC_MAX_ARGS = 16 7.3devel with NAMEDATALEN = 32 and FUNC_MAX_ARGS = 32 7.3devel with NAMEDATALEN = 128 and FUNC_MAX_ARGS = 32 In the single-user test, REL7_2_STABLE is best by about 10%. But in the multi-user test (10 users), *both* 7.3devel tests are about 3.5% faster than 7.2. Joe
-
Re: FUNC_MAX_ARGS benchmarks
Tatsuo Ishii <t-ishii@sra.co.jp> — 2002-08-07T12:56:20Z
> > Don't forget that 128 is for *bytes*, not for characters(this is still > > ture with 7.3). In CJK(Chinese, Japanese and Korean) single character > > can eat up to 3 bytes if the encoding is UTF-8. > > True, but in those languages a typical name would be many fewer > characters than it is in Western alphabets, no? I'd guess (with > no evidence though) that the effect would more or less cancel out. That's only true for "kanji" characters. There are alphabet like phonogram characters called "katakana" and "hiragana". The former is often used to express things imported from foreign languages (That means Japanse has more and more things expressed in katakana than before). Since they are phonogram, they tend to be longer characters. For example, if I would like to have "object id" column and want to name it using "katakana", it would be around 8 characters, that is 24 bytes in UTF-8 encoding. I'm not sure if Chinese or Korean has similar things though. -- Tatsuo Ishii
-
Re: Off-topic: FUNC_MAX_ARGS benchmarks
Tatsuo Ishii <t-ishii@sra.co.jp> — 2002-08-07T15:00:53Z
I'm not sure if could explain welll, but... > Is this process irreversible ? > > I.e. will words like "mirku" or "taikin katchuretchu" (if i remember > correctly my reading form an old dictionary, these were imported words > for "milk" and "chicken cutlets") never get "kanji" characters ? I guess "mirk" --> "mi-ru-ku" (3 katakana), "taikin katchuretchu" --> "chi-ki-n ka-tsu-re-tsu" (3 + 4 katakana). I don't think it's not irreversible. For example, we have kanji characters "gyuu nyuu" (2 kanji characters) having same meaning as milk = miruku, but we cannot interchange "gyuu nyuu" with "miruku" in most cases. > BTW, it seems that even with 3 bytes/char tai-kin is shorter than > chicken ;) Depends. For example, "pu-ro-se-su" (= process) will be totally 12 bytes in UTF-8. -- Tatsuo Ishii
-
Off-topic: FUNC_MAX_ARGS benchmarks
Hannu Krosing <hannu@tm.ee> — 2002-08-07T15:30:11Z
On Wed, 2002-08-07 at 14:56, Tatsuo Ishii wrote: > > > Don't forget that 128 is for *bytes*, not for characters(this is still > > > ture with 7.3). In CJK(Chinese, Japanese and Korean) single character > > > can eat up to 3 bytes if the encoding is UTF-8. > > > > True, but in those languages a typical name would be many fewer > > characters than it is in Western alphabets, no? I'd guess (with > > no evidence though) that the effect would more or less cancel out. > > That's only true for "kanji" characters. There are alphabet like > phonogram characters called "katakana" and "hiragana". The former is > often used to express things imported from foreign languages (That > means Japanse has more and more things expressed in katakana than > before). Is this process irreversible ? I.e. will words like "mirku" or "taikin katchuretchu" (if i remember correctly my reading form an old dictionary, these were imported words for "milk" and "chicken cutlets") never get "kanji" characters ? BTW, it seems that even with 3 bytes/char tai-kin is shorter than chicken ;) ------------- Hannu
-
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-10T23:21:17Z
OK, seems we have not come to a decision yet on this. Do we have agreement to increate FUNC_MAX_ARGS to 32? NAMEDATALEN will be 64 or 128 in 7.3. At this point, we better decide which one we prefer. The conservative approach would be to go for 64 and perhaps increase it again in 7.4 after we get feedback and real-world usage. If we go to 128, we will have trouble decreasing it if there are performance problems. --------------------------------------------------------------------------- Tom Lane wrote: > Joe Conway <mail@joeconway.com> writes: > >> I'm not sure about the trend of increasing standard deviation --- that > >> may reflect more disk I/O being done, and perhaps more checkpoints > >> occurring during the test. But in any case it's clear that there's a > >> nontrivial runtime cost here. Does a 10% slowdown bother you? > > > Hmmm -- didn't Neil do some kind of test that had different results, > > i.e. not much performance difference? > > Well, one person had reported a 10% slowdown in pgbench, but Neil saw > a 10% speedup. Given the well-known difficulty of getting any > reproducible numbers out of pgbench, I don't trust either number very > far; but unless some other folk are willing to repeat the experiment > I think we can only conclude that pgbench isn't affected much by > NAMEDATALEN. > > > I wonder if the large number of > > DDL commands in installcheck doesn't skew the results against longer > > NAMEDATALEN compared to other benchmarks? > > Depends on what you consider skewed, I suppose. pgbench touches only a > very small number of relations, and starts no new backends over the > length of its run, thus everything gets cached and stays cached. At > best I'd consider it an existence proof that some applications won't be > hurt. > > Do you have another application you'd consider a more representative > benchmark? > > regards, tom lane > -- 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
-
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-11T00:22:38Z
Bruce Momjian <pgman@candle.pha.pa.us> writes: > Do we have agreement to increate FUNC_MAX_ARGS to 32? I believe so. > NAMEDATALEN will be 64 or 128 in 7.3. At this point, we better decide > which one we prefer. > The conservative approach would be to go for 64 and perhaps increase it > again in 7.4 after we get feedback and real-world usage. If we go to > 128, we will have trouble decreasing it if there are performance > problems. It seems fairly clear to me that there *are* performance problems, at least in some scenarios. I think we should go to 64. There doesn't seem to be a lot of real-world demand for more than that, despite what the spec says ... regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Joe Conway <mail@joeconway.com> — 2002-08-11T01:20:37Z
Bruce Momjian wrote: > OK, seems we have not come to a decision yet on this. > > Do we have agreement to increate FUNC_MAX_ARGS to 32? > > NAMEDATALEN will be 64 or 128 in 7.3. At this point, we better decide > which one we prefer. > > The conservative approach would be to go for 64 and perhaps increase it > again in 7.4 after we get feedback and real-world usage. If we go to > 128, we will have trouble decreasing it if there are performance > problems. I guess I'd also agree with: FUNC_MAX_ARGS 32 NAMEDATALEN 64 and work on the performance issues for 7.4. Joe
-
Re: FUNC_MAX_ARGS benchmarks
Christopher Kings-Lynne <chriskl@familyhealth.com.au> — 2002-08-11T09:38:56Z
> > NAMEDATALEN will be 64 or 128 in 7.3. At this point, we better decide > > which one we prefer. > > > > The conservative approach would be to go for 64 and perhaps increase it > > again in 7.4 after we get feedback and real-world usage. If we go to > > 128, we will have trouble decreasing it if there are performance > > problems. > > I guess I'd also agree with: > FUNC_MAX_ARGS 32 > NAMEDATALEN 64 > and work on the performance issues for 7.4. I agree too. Chris
-
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-13T18:16:49Z
I am working on a patch to increase these as agreed. I found this interesting, from the 6.3 release notes: Increase 16 char limit on system table/index names to 32 characters(Bruce) The limited to be 16 chars until 6.3 in 1998-03-01. --------------------------------------------------------------------------- Christopher Kings-Lynne wrote: > > > NAMEDATALEN will be 64 or 128 in 7.3. At this point, we better decide > > > which one we prefer. > > > > > > The conservative approach would be to go for 64 and perhaps increase it > > > again in 7.4 after we get feedback and real-world usage. If we go to > > > 128, we will have trouble decreasing it if there are performance > > > problems. > > > > I guess I'd also agree with: > > FUNC_MAX_ARGS 32 > > NAMEDATALEN 64 > > and work on the performance issues for 7.4. > > I agree too. > > Chris > > > > ---------------------------(end of broadcast)--------------------------- > TIP 6: Have you searched our list archives? > > http://archives.postgresql.org > -- 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
-
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-13T20:39:15Z
I have applied the attached patch which changes NAMEDATALEN to 64 and FUNC_MAX_ARGS/INDEX_MAX_KEYS to 32. Hopefully this will keep people happy for a few more years. initdb required. --------------------------------------------------------------------------- Christopher Kings-Lynne wrote: > > > NAMEDATALEN will be 64 or 128 in 7.3. At this point, we better decide > > > which one we prefer. > > > > > > The conservative approach would be to go for 64 and perhaps increase it > > > again in 7.4 after we get feedback and real-world usage. If we go to > > > 128, we will have trouble decreasing it if there are performance > > > problems. > > > > I guess I'd also agree with: > > FUNC_MAX_ARGS 32 > > NAMEDATALEN 64 > > and work on the performance issues for 7.4. > > I agree too. > > Chris > > > -- 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
-
Re: FUNC_MAX_ARGS benchmarks
Neil Conway <nconway@klamath.dyndns.org> — 2002-08-13T21:00:31Z
Bruce Momjian <pgman@candle.pha.pa.us> writes: > I have applied the attached patch which changes NAMEDATALEN to 64 and > FUNC_MAX_ARGS/INDEX_MAX_KEYS to 32. What is the reasoning behind the following change? Index: src/bin/psql/command.c =================================================================== RCS file: /cvsroot/pgsql-server/src/bin/psql/command.c,v retrieving revision 1.75 diff -c -r1.75 command.c *** src/bin/psql/command.c 10 Aug 2002 03:56:23 -0000 1.75 --- src/bin/psql/command.c 13 Aug 2002 20:18:01 -0000 *************** *** 1513,1519 **** sys = malloc(strlen(editorName) + strlen(fname) + 32 + 1); if (!sys) return false; ! sprintf(sys, "exec %s %s", editorName, fname); result = system(sys); if (result == -1) psql_error("could not start editor %s\n", editorName); --- 1513,1519 ---- sys = malloc(strlen(editorName) + strlen(fname) + 32 + 1); if (!sys) return false; ! snprintf(sys, 32, "exec %s %s", editorName, fname); result = system(sys); if (result == -1) psql_error("could not start editor %s\n", editorName); Cheers, Neil -- Neil Conway <neilconway@rogers.com> PGP Key ID: DB3C29FC -
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-13T21:03:26Z
Good question. Looked like a possible buffer overrun to me. Of course, I botched it up. I will fix it. --------------------------------------------------------------------------- Neil Conway wrote: > Bruce Momjian <pgman@candle.pha.pa.us> writes: > > I have applied the attached patch which changes NAMEDATALEN to 64 and > > FUNC_MAX_ARGS/INDEX_MAX_KEYS to 32. > > What is the reasoning behind the following change? > > Index: src/bin/psql/command.c > =================================================================== > RCS file: /cvsroot/pgsql-server/src/bin/psql/command.c,v > retrieving revision 1.75 > diff -c -r1.75 command.c > *** src/bin/psql/command.c 10 Aug 2002 03:56:23 -0000 1.75 > --- src/bin/psql/command.c 13 Aug 2002 20:18:01 -0000 > *************** > *** 1513,1519 **** > sys = malloc(strlen(editorName) + strlen(fname) + 32 + 1); > if (!sys) > return false; > ! sprintf(sys, "exec %s %s", editorName, fname); > result = system(sys); > if (result == -1) > psql_error("could not start editor %s\n", editorName); > --- 1513,1519 ---- > sys = malloc(strlen(editorName) + strlen(fname) + 32 + 1); > if (!sys) > return false; > ! snprintf(sys, 32, "exec %s %s", editorName, fname); > result = system(sys); > if (result == -1) > psql_error("could not start editor %s\n", editorName); > > Cheers, > > Neil > > -- > Neil Conway <neilconway@rogers.com> > PGP Key ID: DB3C29FC > > -- 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 -
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-13T21:05:48Z
In fact, I now see that there was no such problem. I do wonder why the 32 is there, though? Shouldn't it be 6 or something like that? --------------------------------------------------------------------------- Neil Conway wrote: > Bruce Momjian <pgman@candle.pha.pa.us> writes: > > I have applied the attached patch which changes NAMEDATALEN to 64 and > > FUNC_MAX_ARGS/INDEX_MAX_KEYS to 32. > > What is the reasoning behind the following change? > > Index: src/bin/psql/command.c > =================================================================== > RCS file: /cvsroot/pgsql-server/src/bin/psql/command.c,v > retrieving revision 1.75 > diff -c -r1.75 command.c > *** src/bin/psql/command.c 10 Aug 2002 03:56:23 -0000 1.75 > --- src/bin/psql/command.c 13 Aug 2002 20:18:01 -0000 > *************** > *** 1513,1519 **** > sys = malloc(strlen(editorName) + strlen(fname) + 32 + 1); > if (!sys) > return false; > ! sprintf(sys, "exec %s %s", editorName, fname); > result = system(sys); > if (result == -1) > psql_error("could not start editor %s\n", editorName); > --- 1513,1519 ---- > sys = malloc(strlen(editorName) + strlen(fname) + 32 + 1); > if (!sys) > return false; > ! snprintf(sys, 32, "exec %s %s", editorName, fname); > result = system(sys); > if (result == -1) > psql_error("could not start editor %s\n", editorName); > > Cheers, > > Neil > > -- > Neil Conway <neilconway@rogers.com> > PGP Key ID: DB3C29FC > > > ---------------------------(end of broadcast)--------------------------- > TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org > -- 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 -
Re: FUNC_MAX_ARGS benchmarks
Tom Lane <tgl@sss.pgh.pa.us> — 2002-08-13T21:42:33Z
Bruce Momjian <pgman@candle.pha.pa.us> writes: > In fact, I now see that there was no such problem. I do wonder why the > 32 is there, though? Shouldn't it be 6 or something like that? Whoever it was was too lazy to count accurately ;-) I guess I'd vote for changing the code to be sys = malloc(strlen(editorName) + strlen(fname) + 10 + 1); if (!sys) return false; sprintf(sys, "exec '%s' '%s'", editorName, fname); (note the added quotes to provide a little protection against spaces and such). Then it's perfectly obvious what the calculation is doing. I don't care about wasting 20-some bytes, but confusing readers of the code is worth avoiding. regards, tom lane
-
Re: FUNC_MAX_ARGS benchmarks
Bruce Momjian <pgman@candle.pha.pa.us> — 2002-08-14T05:49:06Z
Change made. --------------------------------------------------------------------------- Tom Lane wrote: > Bruce Momjian <pgman@candle.pha.pa.us> writes: > > In fact, I now see that there was no such problem. I do wonder why the > > 32 is there, though? Shouldn't it be 6 or something like that? > > Whoever it was was too lazy to count accurately ;-) > > I guess I'd vote for changing the code to be > > sys = malloc(strlen(editorName) + strlen(fname) + 10 + 1); > if (!sys) > return false; > sprintf(sys, "exec '%s' '%s'", editorName, fname); > > (note the added quotes to provide a little protection against spaces > and such). Then it's perfectly obvious what the calculation is doing. > I don't care about wasting 20-some bytes, but confusing readers of the > code is worth avoiding. > > regards, tom lane > -- 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