Re: Nested loops are killing throughput - Mailing list pgsql-sql

From CG
Subject Re: Nested loops are killing throughput
Date
Msg-id 20060919185913.21542.qmail@web37908.mail.mud.yahoo.com
Whole thread Raw
In response to Re: Nested loops are killing throughput  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Nested loops are killing throughput  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-sql
>If packet_status is large, that seems like a perfectly reasonable plan
>to me.  If not ... what data type is packet_uuid?  Is its equality op
>marked mergeable or hashable?

It is of type uniqueidentifier ... 
CREATE OPERATOR =( PROCEDURE = uniqueidentifier_eq, LEFTARG = uniqueidentifier, RIGHTARG = uniqueidentifier, COMMUTATOR
==, RESTRICT = eqsel, JOIN = eqjoinsel, HASHES, MERGES, SORT1 = <, SORT2 = <, LTCMP = <, GTCMP = >);
 
It looks like it is marked both mergable and hashable.
So what size (I have no idea what units to use to think about table size... kilobytes? pages? rows?) is "large"  ... It
seemslike we recently stepped over that imaginary line between medium and large.
 
We could re-tune PostgreSQL... What settings would make sense to tweak? Sort Memory? 
We could partition the tables... I understand the theory behind table partitioning and partial indexes, but I've never
comeacross a howto or even a best practices list.
 
We could remove data from the table... I don't like this as much, but if that's the only way, that's the only way.


pgsql-sql by date:

Previous
From: Tom Lane
Date:
Subject: Re: Nested loops are killing throughput
Next
From: "Henry Ortega"
Date:
Subject: Make Trigger run after completion of ENTIRE transaction