Re: Removing unneeded self joins

Alexander Kuzmenkov <a.kuzmenkov@postgrespro.ru>

From: Alexander Kuzmenkov <a.kuzmenkov@postgrespro.ru>
To: David Rowley <david.rowley@2ndquadrant.com>
Cc: PostgreSQL-development <pgsql-hackers@postgresql.org>
Date: 2018-11-21T12:54:20Z
Lists: pgsql-hackers

Commits

Same data as JSON: GET /api/v1/messages/:b64id/commits the thread's linked commits as JSON, with link sources. API reference →
  1. Remove GUC_NOT_IN_SAMPLE from enable_self_join_elimination

  2. Put enable_self_join_elimination into postgresql.conf.sample

  3. Get rid of ojrelid local variable in remove_rel_from_query()

  4. Implement Self-Join Elimination

  5. Revert: Remove useless self-joins

  6. Replace lateral references to removed rels in subqueries

  7. Replace relids in lateral subquery parse tree during SJE

  8. Forbid SJE with result relation

  9. Fix misuse of RelOptInfo.unique_for_rels cache by SJE

  10. Replace the relid in some missing fields during SJE

  11. Revert 56-bit relfilenode change and follow-up commits.

  12. Stabilize timetz test across DST transitions.

  13. Speed up finding EquivalenceClasses for a given set of rels

  14. Fix mark-and-restore-skipping test case to not be a self-join.

Attachments

El 08/11/18 a las 08:59, David Rowley escribió:
> On 19 October 2018 at 01:47, Alexander Kuzmenkov
> <a.kuzmenkov@postgrespro.ru>  wrote:
>> Here is a version that compiles.
> I had a quick read through this and I think its missing about a 1-page
> comment section detailing when we can and when we cannot remove these
> self joins, and what measures we must take when we do remove them.

I added some explanation to the comment for remove_useless_joins. This 
is probably still not clear enough, so if you have any particular 
questions I'll cover them too. While improving the comments, I found 
some bugs around the handling of join clauses and broken ECs, so I fixed 
them and added the tests.


> Apart from that, I noted the following during my read:
>
> 1. I don't think this is the right way to do this. There are other
> places where we alter the varnoold. For example:
> search_indexed_tlist_for_var(). So you should likely be doing that too
> rather than working around it.

Fixed.


> 2. Surely the following loop is incorrect:
>
> for (i = toKeep->min_attr; i <= toKeep->max_attr; i++)
> {
> int attno = i - toKeep->min_attr;
> toKeep->attr_needed[attno] = bms_add_members(toKeep->attr_needed[attno],
> toRemove->attr_needed[attno]);
> }
>
> What if toRemove has a lower min_attr or higher max_attr?

This shouldn't happen because this is always the same relation, and 
max_attr is its physical number of attributes. There is an assertion 
about this in remove_self_joins_one_group:
             /* A sanity check: the relations have the same Oid. */
             Assert(root->simple_rte_array[relids[i]]->relid == 
root->simple_rte_array[relids[o]]->relid);



> 3. "wind" -> "find"
>
> + * When we wind such a join, we mark one of the participating relation as

Fixed.


> 4. I think the following shouldn't be happening:
>
> +------------------------------------------------
>    Result
>      One-Time Filter: false
> -(2 rows)
> +   ->  Index Scan using parent_pkey on parent x
> +         Index Cond: (k = 1)
> +(4 rows)

This happens because for join rels, we make some effort to prove that 
they are empty and not make any paths for them, and we don't do this for 
base rels. When we remove the join, this difference is exposed. Compare 
to this query:

postgres=# explain select * from parent where k = 1 and k = 2;
                                    QUERY PLAN
────────────────────────────────────────────────────────────────────────────────
  Result  (cost=0.15..8.17 rows=1 width=8)
    One-Time Filter: false
    ->  Index Scan using parent_pkey on parent  (cost=0.15..8.17 rows=1 
width=8)
          Index Cond: (k = 1)
(4 rows)


> 5. I'd have thought the opposite. Surely there are more chances of
> this being useful with more joins?
>
> + /* Limit the number of joins we process to control the quadratic behavior. */
> + if (n > join_collapse_limit)
> + break;

That is true, but we also have to think about the overhead when we don't 
find any joins to remove. Without this cutoff, we have to examine every 
pair of self-joins, so the run time grows quadratically with the number 
of such joins in the query. I don't have a better idea on how to control 
this.


> 6. In remove_self_joins_one_level() I think you should collect the
> removed relations in a Relids rather than a list.

Done.

-- 
Alexander Kuzmenkov
Postgres Professional:http://www.postgrespro.com
The Russian Postgres Company