Re: [HACKERS] Major Feature Interactions

2007-03-13 Thread Tom Lane
"Merlin Moncure" <[EMAIL PROTECTED]> writes:
> What about the interaction of plan invalidation and the security
> problems with 'security definer'?  I am especially curious if pl
> functions will no longer regenerate their plans with each session for
> 8.3.  Is that going to be the case?  It wasn't completely clear from
> the related discussions AFAICT.

No, there's no intention of caching plans across sessions.

I'm intending to build some infrastructure in namespace.c to support
a stack of "override" search_path values, and then tweak plancache.c
to override search_path during a replan.  (It has to be a stack because
nested replan events are entirely possible.)  I think this
infrastructure will also work for attaching search paths to functions;
but we still lack an agreed design spec for how that should look to the
user.

regards, tom lane

---(end of broadcast)---
TIP 6: explain analyze is your friend


Re: [HACKERS] Major Feature Interactions

2007-03-13 Thread Merlin Moncure

On 2/28/07, Simon Riggs <[EMAIL PROTECTED]> wrote:

There's a number of major features all coming together over the next
weeks, so I wanted to raise some awareness of possible areas of
interaction. My concern is more than just "will multiple patches apply
together?", but extends into whether the features interact with each
other with synergy, ignore each other or have negative impact.

The projects that concern me are the following internals projects

Plan Invalidation
Autovacuum changes
Bitmap indexes
GIT indexes
Dead Space Map (DSM)
HOT Updating
Updateable cursors
Restartable VACUUM


What about the interaction of plan invalidation and the security
problems with 'security definer'?  I am especially curious if pl
functions will no longer regenerate their plans with each session for
8.3.  Is that going to be the case?  It wasn't completely clear from
the related discussions AFAICT.

merlin

---(end of broadcast)---
TIP 7: You can help support the PostgreSQL project by donating at

   http://www.postgresql.org/about/donate


[HACKERS] Major Feature Interactions

2007-02-28 Thread Simon Riggs
There's a number of major features all coming together over the next
weeks, so I wanted to raise some awareness of possible areas of
interaction. My concern is more than just "will multiple patches apply
together?", but extends into whether the features interact with each
other with synergy, ignore each other or have negative impact.

The projects that concern me are the following internals projects

Plan Invalidation
Autovacuum changes
Bitmap indexes
GIT indexes
Dead Space Map (DSM)
HOT Updating
Updateable cursors
Restartable VACUUM

The potential interactions as I understand them are these: I'm not
saying this list is either complete or accurate; checking whether it is
or not is exactly the reason for this post.

Anyway, just trying to raise awareness to look for potential issues.

UpdCursors
--
Syntax changes only, no impact on other projects mentioned.

HOT
---
GIT
Used to be some conflicts at patch level, now gone?
Positive impact on GIT performance
PlanInval
heap_check_hotupdate() test can performed in planner, so
will no longer be a heap function
DSM
HOT updates need not be logged, since they will be cleared
by retail VACUUMs
BitmapIdx
Potential issue with chilling tuples during CREATE INDEX
AutoVac
HOT will change how UPDATEs are reported to pg_stat, by
adding additional fields.
UpdCursors
Should tidscan follow chain to correct tuple? That seems to
change current behaviour even if it might be useful.

Plan Invalidation
-
No known changes, other than the integrations already mentioned

Autovacuum changes
--
DSM
Is implementing new forms of VACUUM: VACUUM and VACUUM ALL.
Does reporting of row stats change? 

Bitmap indexes
--
GIT
Do we need both? I think yes, but need to see some info on
when crossover occurs between two index methods.

Restartable VACUUM
--
DSM
Interactions with DSM?
HOT
Must use full cycles only

-- 
  Simon Riggs 
  EnterpriseDB   http://www.enterprisedb.com



---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster