Unlogged vs. In-Memory

Started by Josh Berkusalmost 15 years ago81 messageshackers
Jump to latest
#1Josh Berkus
josh@agliodbs.com

All,

This has come up a couple times off-list, so I thought we should hammer it out here regarding messaging for 9.1.

I was discussing the Unlogged Tables feature with an industry analyst. He advised me fairly strongly that we should call it, or at least describe it, as "in-memory tables". While I'm not that sanguine about renaming the feature, I'm happy to use marketing terms in descriptive text in a press release if it gets people interested.

Our basic issue with the cool features in 9.1 is the elevator pitch problem. Try to describe SSI to a reporter in 20 seconds or less. Unlogged tables suffers from this. "What's an unlogged table? Why is *not* having something a feature?" "long description here ..." "nevermind, I have enough."

Saying "It's like a in-memory table" is a lot more successful. And it's using the term "in-memory" the same way a lot of other DBMSes market it, i.e. in-memory == non-durable & no disk writes. The important thing from my perspective is that unlogged tables give us the capabilities of a lot of the "in-memory" databases ... with unlogged tables and fsync off, for example, PostgreSQL becomes a viable caching database.

When doing PR, it's more important to use terms people recognize than to use terms which are perfectly accurate. Nobody expects a news article to be perfectly accurate anyway.

However, I posted this because I think that several folks in the community feel that this is going too far into the land of marketese, and I want to hash it out and get consensus before we start pitching 9.1 final.

--
Josh Berkus
PostgreSQL Experts Inc.
http://pgexperts.com
San Francisco

#2Dave Page
dpage@pgadmin.org
In reply to: Josh Berkus (#1)
Re: Unlogged vs. In-Memory

On Tue, May 3, 2011 at 6:46 PM, Joshua Berkus <josh@agliodbs.com> wrote:

Saying "It's like a in-memory table" is a lot more successful.  And it's using the term "in-memory" the same way a lot of other DBMSes market it, i.e. in-memory == non-durable & no disk writes.

Unlogged tables *are* written to disk though. And may be read from
there too - they are not pinned into memory.

The important thing from my perspective is that unlogged tables give us the capabilities of a lot of the "in-memory" databases ... with unlogged tables and fsync off, for example, PostgreSQL becomes a viable caching database.

When doing PR, it's more important to use terms people recognize than to use terms which are perfectly accurate.  Nobody expects a news article to be perfectly accurate anyway.

I consider the term to be pretty much 100% inaccurate. When you say
in-memory to me, I think of a table that is pinned into buffer cache,
as you can do in some DBMS', thus *ensuring* the reads are fast, or of
a database or table that operates entirely in memory (perhaps with
occasional disk writes for persistence) like VoltDB, Redis or MySQL's
Memory storage manager.

However, I posted this because I think that several folks in the community feel that this is going too far into the land of marketese, and I want to hash it out and get consensus before we start pitching 9.1 final.

Thank you.

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

#3Thom Brown
thom@linux.com
In reply to: Josh Berkus (#1)
Re: Unlogged vs. In-Memory

On 3 May 2011 18:46, Joshua Berkus <josh@agliodbs.com> wrote:

All,

This has come up a couple times off-list, so I thought we should hammer it out here regarding messaging for 9.1.

I was discussing the Unlogged Tables feature with an industry analyst.  He advised me fairly strongly that we should call it, or at least describe it, as "in-memory tables".  While I'm not that sanguine about renaming the feature, I'm happy to use marketing terms in descriptive text in a press release if it gets people interested.

Our basic issue with the cool features in 9.1 is the elevator pitch problem.  Try to describe SSI to a reporter in 20 seconds or less.  Unlogged tables suffers from this.  "What's an unlogged table? Why is *not* having something a feature?"  "long description here ..." "nevermind, I have enough."

Saying "It's like a in-memory table" is a lot more successful.  And it's using the term "in-memory" the same way a lot of other DBMSes market it, i.e. in-memory == non-durable & no disk writes.  The important thing from my perspective is that unlogged tables give us the capabilities of a lot of the "in-memory" databases ... with unlogged tables and fsync off, for example, PostgreSQL becomes a viable caching database.

When doing PR, it's more important to use terms people recognize than to use terms which are perfectly accurate.  Nobody expects a news article to be perfectly accurate anyway.

However, I posted this because I think that several folks in the community feel that this is going too far into the land of marketese, and I want to hash it out and get consensus before we start pitching 9.1 final.

As far as I'm aware, an unlogged table is just a table which
sacrifices crash safety for speed. It's not "in-memory" because that
suggests it's always kept in the physical memory, which isn't the
case.

--
Thom Brown
Twitter: @darkixion
IRC (freenode): dark_ixion
Registered Linux user: #516935

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

#4Kevin Grittner
Kevin.Grittner@wicourts.gov
In reply to: Josh Berkus (#1)
Re: Unlogged vs. In-Memory

Joshua Berkus <josh@agliodbs.com> wrote:

I was discussing the Unlogged Tables feature with an industry
analyst. He advised me fairly strongly that we should call it, or
at least describe it, as "in-memory tables". While I'm not that
sanguine about renaming the feature, I'm happy to use marketing
terms in descriptive text in a press release if it gets people
interested.

I guess it does get the main idea across at the front. We could
include in the "fine print" that the in-memory data can be paged to
disk temporarily when memory is needed for other purposes, and that
it will be saved on clean shutdown for automatic reload when
possible.

Our basic issue with the cool features in 9.1 is the elevator
pitch problem. Try to describe SSI to a reporter in 20 seconds or
less.

Yeah, I've noticed that ...

Nobody expects a news article to be perfectly accurate anyway.

... and that.

However, I posted this because I think that several folks in the
community feel that this is going too far into the land of
marketese, and I want to hash it out and get consensus before we
start pitching 9.1 final.

As long as the end result is accurate if someone makes it through
the whole thing, I don't think it's a problem to lead with the main
point. In other words, calling it an in-memory table does capture
the essence of the intent; it is enough if the caveats which come
later cover the exceptions, IMO. But let's not rename the feature;
this is about marketing presentation.

-Kevin

#5Rob Wultsch
wultsch@gmail.com
In reply to: Josh Berkus (#1)
Re: Unlogged vs. In-Memory

Can Unlogged tables be located on a table space mount on a ram fs
without hosing the instance if the server gets bounced?

On Tue, May 3, 2011 at 10:46 AM, Joshua Berkus <josh@agliodbs.com> wrote:

All,

This has come up a couple times off-list, so I thought we should hammer it out here regarding messaging for 9.1.

I was discussing the Unlogged Tables feature with an industry analyst.  He advised me fairly strongly that we should call it, or at least describe it, as "in-memory tables".  While I'm not that sanguine about renaming the feature, I'm happy to use marketing terms in descriptive text in a press release if it gets people interested.

Our basic issue with the cool features in 9.1 is the elevator pitch problem.  Try to describe SSI to a reporter in 20 seconds or less.  Unlogged tables suffers from this.  "What's an unlogged table? Why is *not* having something a feature?"  "long description here ..." "nevermind, I have enough."

Saying "It's like a in-memory table" is a lot more successful.  And it's using the term "in-memory" the same way a lot of other DBMSes market it, i.e. in-memory == non-durable & no disk writes.  The important thing from my perspective is that unlogged tables give us the capabilities of a lot of the "in-memory" databases ... with unlogged tables and fsync off, for example, PostgreSQL becomes a viable caching database.

When doing PR, it's more important to use terms people recognize than to use terms which are perfectly accurate.  Nobody expects a news article to be perfectly accurate anyway.

However, I posted this because I think that several folks in the community feel that this is going too far into the land of marketese, and I want to hash it out and get consensus before we start pitching 9.1 final.

--
Josh Berkus
PostgreSQL Experts Inc.
http://pgexperts.com
San Francisco

--
Sent via pgsql-advocacy mailing list (pgsql-advocacy@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-advocacy

--
Rob Wultsch
wultsch@gmail.com

#6Thom Brown
thom@linux.com
In reply to: Rob Wultsch (#5)
Re: Unlogged vs. In-Memory

On 3 May 2011 19:02, Rob Wultsch <wultsch@gmail.com> wrote:

Can Unlogged tables be located on a table space mount on a ram fs
without hosing the instance if the server gets bounced?

No more than anything else in a RAM filesystem. There are of course
battery-backed RAM disk devices people can use, but those are a
special case.

--
Thom Brown
Twitter: @darkixion
IRC (freenode): dark_ixion
Registered Linux user: #516935

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

#7Josh Berkus
josh@agliodbs.com
In reply to: Kevin Grittner (#4)
Re: Unlogged vs. In-Memory

On 5/3/11 11:01 AM, Kevin Grittner wrote:

In other words, calling it an in-memory table does capture
the essence of the intent; it is enough if the caveats which come
later cover the exceptions, IMO. But let's not rename the feature;
this is about marketing presentation.

Right. What I'm suggesting ... and have already been doing, because I
didn't realize it would be a problem, is that we say something like this
in the description:

"Unlogged tables are similar to in-memory tables or global temporary
tables."

That way, we make it clear that they're not exactly the same, but we
still use the right buzzwords. And they are similar, because they can
be used to fill the same needs.

Part of the problem is the name we're using for the feature. "Unlogged
tables" sounds like we've taken something away and are calling that a
feature. "Now with no brakes!" As feature names go, it's as unsexy as
you can get.

--
Josh Berkus
PostgreSQL Experts Inc.
http://pgexperts.com

#8Simon Riggs
simon@2ndQuadrant.com
In reply to: Josh Berkus (#1)
Re: Unlogged vs. In-Memory

On Tue, May 3, 2011 at 6:46 PM, Joshua Berkus <josh@agliodbs.com> wrote:

This has come up a couple times off-list, so I thought we should hammer it out here regarding messaging for 9.1.

I was discussing the Unlogged Tables feature with an industry analyst.  He advised me fairly strongly that we should call it, or at least describe it, as "in-memory tables".  While I'm not that sanguine about renaming the feature, I'm happy to use marketing terms in descriptive text in a press release if it gets people interested.

Our basic issue with the cool features in 9.1 is the elevator pitch problem.  Try to describe SSI to a reporter in 20 seconds or less.  Unlogged tables suffers from this.  "What's an unlogged table? Why is *not* having something a feature?"  "long description here ..." "nevermind, I have enough."

Saying "It's like a in-memory table" is a lot more successful.  And it's using the term "in-memory" the same way a lot of other DBMSes market it, i.e. in-memory == non-durable & no disk writes.  The important thing from my perspective is that unlogged tables give us the capabilities of a lot of the "in-memory" databases ... with unlogged tables and fsync off, for example, PostgreSQL becomes a viable caching database.

When doing PR, it's more important to use terms people recognize than to use terms which are perfectly accurate.  Nobody expects a news article to be perfectly accurate anyway.

However, I posted this because I think that several folks in the community feel that this is going too far into the land of marketese, and I want to hash it out and get consensus before we start pitching 9.1 final.

The only reason not to do this is that they aren't actually "In
Memory". Unlogged tables can be any size and therefore scroll to disk.

Now admittedly, a very large UNLOGGED table is about as robust as a
chocolate teapot, so I do see where you're coming from.

I'm at a loss to understand why the implementation is so different
from other DBMS
http://www.dba-oracle.com/oracle_news/2005_6_10_NOLOGGING_NOARCHIVELOG_Standby_Databases_Part%201.htm

With regards to a renaming, maybe we should call them CACHE TABLES, to
indicate what they are useful for. At least that doesn't confuse
things more by implying they are just in-memory.

The problem I see is that there isn't any event that fires when the
system crashes and zeroes all the tables, so if you do use it for a
cache, you must always use check-cache-or-read-from-main-source logic
because the cache isn't refilled automatically. In fact there is no
way to tell it has crashed at all, AFAICS, except by having a 1 row
table that would be empty in case of a crash.

I agree that we probably need to rename or rework them as they stand.

--
 Simon Riggs                   http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training & Services

#9Simon Riggs
simon@2ndQuadrant.com
In reply to: Simon Riggs (#8)
Re: Unlogged vs. In-Memory

On Tue, May 3, 2011 at 7:08 PM, simon <simon@2ndQuadrant.com> wrote:

I agree that we probably need to rename or rework them as they stand.

...and, as you know, there are minor changes I'd like to make before
we release to my own work to round out the features we are delivering,
so these comments aren't partisan.

--
 Simon Riggs                   http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training & Services

#10Gilberto Castillo
gilberto.castillo@etecsa.cu
In reply to: Josh Berkus (#1)
Re: Unlogged vs. In-Memory

El mar, 03-05-2011 a las 12:46 -0500, Joshua Berkus escribió:

All,

This has come up a couple times off-list, so I thought we should hammer it out here regarding messaging for 9.1.

"in-memory tables" song good.

--
Saludos,
Gilberto Castillo
Edificio Beijing. Miramar Trade Center. Etecsa.
Miramar, La Habana.Cuba.

#11Josh
josh@globalherald.net
In reply to: Josh Berkus (#7)
Re: Unlogged vs. In-Memory

Part of the problem is the name we're using for the feature. "Unlogged
tables" sounds like we've taken something away and are calling that a
feature. "Now with no brakes!" As feature names go, it's as unsexy as

Logless tables?

Log-Free tables?

#12Magnus Hagander
magnus@hagander.net
In reply to: Thom Brown (#6)
Re: Unlogged vs. In-Memory

On Tue, May 3, 2011 at 20:06, Thom Brown <thom@linux.com> wrote:

On 3 May 2011 19:02, Rob Wultsch <wultsch@gmail.com> wrote:

Can Unlogged tables be located on a table space mount on a ram fs
without hosing the instance if the server gets bounced?

No more than anything else in a RAM filesystem.  There are of course
battery-backed RAM disk devices people can use, but those are a
special case.

I think you're missing the scenario Rob is talking about. I think he
mentions the sequence:

CREATE TABLESPACE junk LOCATION '/tmp/junk';
CREATE UNLOGGED TABLE meh(a int) TABLESPACE junk;
<stop server>
rm -rf /tmp/junk/*
<start server>
postgres=# select * from meh;
ERROR: could not open file
"pg_tblspc/16434/PG_9.1_201104251/12008/16435": No such file or
directory

Now if the tablespace contains *only* unlogged tables, it should at
least theoretically be possible to recover from this situation on
startup, I think. But it's not now. Anybody have an idea about how
much work that would be?

--
 Magnus Hagander
 Me: http://www.hagander.net/
 Work: http://www.redpill-linpro.com/

#13Magnus Hagander
magnus@hagander.net
In reply to: Josh Berkus (#7)
Re: Unlogged vs. In-Memory

On Tue, May 3, 2011 at 20:07, Josh Berkus <josh@agliodbs.com> wrote:

On 5/3/11 11:01 AM, Kevin Grittner wrote:

In other words, calling it an in-memory table does capture
the essence of the intent; it is enough if the caveats which come
later cover the exceptions, IMO.  But let's not rename the feature;
this is about marketing presentation.

Right.   What I'm suggesting ... and have already been doing, because I
didn't realize it would be a problem, is that we say something like this
in the description:

"Unlogged tables are similar to in-memory tables or global temporary
tables."

They are *not* similar to in-memory table, in that they are *always*
written to disk. AFAIK that is - or do they actually get spooled in
RAM-only until they get big enough? I'm prettysure they don't.

They *are*, however, pretty similar to global temporary tables. Are
those well known enough to be used for the pitch without mentioning
in-memory tables?

Part of the problem is the name we're using for the feature.  "Unlogged
tables" sounds like we've taken something away and are calling that a
feature.  "Now with no brakes!"  As feature names go, it's as unsexy as
you can get.

"nosql tables"? ;)

--
 Magnus Hagander
 Me: http://www.hagander.net/
 Work: http://www.redpill-linpro.com/

#14Dave Page
dpage@pgadmin.org
In reply to: Magnus Hagander (#13)
Re: Unlogged vs. In-Memory

On Tue, May 3, 2011 at 7:45 PM, Magnus Hagander <magnus@hagander.net> wrote:

On Tue, May 3, 2011 at 20:07, Josh Berkus <josh@agliodbs.com> wrote:

On 5/3/11 11:01 AM, Kevin Grittner wrote:

In other words, calling it an in-memory table does capture
the essence of the intent; it is enough if the caveats which come
later cover the exceptions, IMO.  But let's not rename the feature;
this is about marketing presentation.

Right.   What I'm suggesting ... and have already been doing, because I
didn't realize it would be a problem, is that we say something like this
in the description:

"Unlogged tables are similar to in-memory tables or global temporary
tables."

They are *not* similar to in-memory table, in that they are *always*
written to disk. AFAIK that is - or do they actually get spooled in
RAM-only until they get big enough? I'm prettysure they don't.

They *are*, however, pretty similar to global temporary tables. Are
those well known enough to be used for the pitch without mentioning
in-memory tables?

I wouldn't. Robert and I talked a number of times about him
implementing global temp tables after unlogged tables. If he does,
then things will just get a whole heap more confusing next year if
we're already (mis)used the term.

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

#15Kevin Grittner
Kevin.Grittner@wicourts.gov
In reply to: Magnus Hagander (#13)
Re: Unlogged vs. In-Memory

Magnus Hagander <magnus@hagander.net> wrote:

They are *not* similar to in-memory table, in that they are
*always* written to disk.

I thought we avoided flushing them to disk on checkpoint, or did
that idea fall flat? Does the background writer flush them? If
neither of these happens, then we can legitimately call them
in-memory, as long as we point out that they are saved on a clean
shutdown for reload on startup, and may be flushed from RAM at times
when other objects need the memory.

-Kevin

#16Josh Berkus
josh@agliodbs.com
In reply to: Magnus Hagander (#13)
Re: Unlogged vs. In-Memory

On 5/3/11 11:45 AM, Magnus Hagander wrote:

They are *not* similar to in-memory table, in that they are *always*
written to disk.

Only if they need to get pushed out of RAM, no?

--
Josh Berkus
PostgreSQL Experts Inc.
http://pgexperts.com

#17Magnus Hagander
magnus@hagander.net
In reply to: Kevin Grittner (#15)
Re: Unlogged vs. In-Memory

On Tue, May 3, 2011 at 20:52, Kevin Grittner
<Kevin.Grittner@wicourts.gov> wrote:

Magnus Hagander <magnus@hagander.net> wrote:

They are *not* similar to in-memory table, in that they are
*always* written to disk.

I thought we avoided flushing them to disk on checkpoint, or did
that idea fall flat?  Does the background writer flush them?  If
neither of these happens, then we can legitimately call them
in-memory, as long as we point out that they are saved on a clean
shutdown for reload on startup, and may be flushed from RAM at times
when other objects need the memory.

I thought that wasn't implemented. But I could certainly have missed
something around it. If they are like that then yes, we can probably
get around calling them "similar to" in-memory tables.

--
 Magnus Hagander
 Me: http://www.hagander.net/
 Work: http://www.redpill-linpro.com/

#18Thom Brown
thom@linux.com
In reply to: Magnus Hagander (#13)
Re: Unlogged vs. In-Memory

On 3 May 2011 19:45, Magnus Hagander <magnus@hagander.net> wrote:

On Tue, May 3, 2011 at 20:07, Josh Berkus <josh@agliodbs.com> wrote:

Part of the problem is the name we're using for the feature.  "Unlogged
tables" sounds like we've taken something away and are calling that a
feature.  "Now with no brakes!"  As feature names go, it's as unsexy as
you can get.

"nosql tables"? ;)

In all seriousness, I think it's important we should not mention
anything like that at any point. :S

--
Thom Brown
Twitter: @darkixion
IRC (freenode): dark_ixion
Registered Linux user: #516935

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

#19Simon Riggs
simon@2ndQuadrant.com
In reply to: Magnus Hagander (#13)
Re: Unlogged vs. In-Memory

On Tue, May 3, 2011 at 7:45 PM, Magnus Hagander <magnus@hagander.net> wrote:

"Unlogged tables are similar to in-memory tables or global temporary
tables."

They are *not* similar to in-memory table, in that they are *always*
written to disk. AFAIK that is - or do they actually get spooled in
RAM-only until they get big enough? I'm prettysure they don't.

They *are*, however, pretty similar to global temporary tables. Are
those well known enough to be used for the pitch without mentioning
in-memory tables?

Apparently not.

Part of the problem is the name we're using for the feature.  "Unlogged
tables" sounds like we've taken something away and are calling that a
feature.  "Now with no brakes!"  As feature names go, it's as unsexy as
you can get.

"nosql tables"? ;)

Not that either.

--
 Simon Riggs                   http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training & Services

#20Ian Bailey-Leung
ian@hardcircle.net
In reply to: Josh (#11)
Re: Unlogged vs. In-Memory

On Tue, May 3, 2011 at 2:28 PM, Joshua Kramer <josh@globalherald.net> wrote:

Part of the problem is the name we're using for the feature.  "Unlogged
tables" sounds like we've taken something away and are calling that a
feature.  "Now with no brakes!"  As feature names go, it's as unsexy as

Logless tables?
Log-Free tables?

The best way to show off a new feature is to emphasize the positive
aspects. The main reason people will use unlogged tables is to improve
performance on tables that do not need to be crash safe. I would
propose calling the feature something like "Fast Tables", and the fine
print can mention the trade-offs related to not logging.

Just my thoughts,
~Ian

#21Roy Hann
specially@processed.almost.meat
In reply to: Josh Berkus (#1)
#22Robert Haas
robertmhaas@gmail.com
In reply to: Magnus Hagander (#12)
#23Korry Douglas
korry.douglas@enterprisedb.com
In reply to: Roy Hann (#21)
#24Adrian Klaver
adrian.klaver@aklaver.com
In reply to: Korry Douglas (#23)
#25Simon Riggs
simon@2ndQuadrant.com
In reply to: Robert Haas (#22)
#26Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Simon Riggs (#25)
#27Robert Haas
robertmhaas@gmail.com
In reply to: Alvaro Herrera (#26)
#28David Fetter
david@fetter.org
In reply to: Ian Bailey-Leung (#20)
#29Jaime Casanova
jcasanov@systemguards.com.ec
In reply to: David Fetter (#28)
#30Devrim GÜNDÜZ
devrim@gunduz.org
In reply to: David Fetter (#28)
#31David Fetter
david@fetter.org
In reply to: Devrim GÜNDÜZ (#30)
#32Devrim GÜNDÜZ
devrim@gunduz.org
In reply to: David Fetter (#31)
#33Simon Riggs
simon@2ndQuadrant.com
In reply to: Robert Haas (#27)
#34Kevin Grittner
Kevin.Grittner@wicourts.gov
In reply to: Jaime Casanova (#29)
In reply to: Kevin Grittner (#34)
#36David Fetter
david@fetter.org
In reply to: Nicholson, Brad (Toronto, ON, CA) (#35)
#37Jaime Casanova
jcasanov@systemguards.com.ec
In reply to: Kevin Grittner (#34)
#38Devrim GÜNDÜZ
devrim@gunduz.org
In reply to: David Fetter (#36)
#39Josh Williams
joshwilliams@ij.net
In reply to: Devrim GÜNDÜZ (#38)
#40David Fetter
david@fetter.org
In reply to: Josh Williams (#39)
#41Joshua D. Drake
jd@commandprompt.com
In reply to: Kevin Grittner (#34)
#42Thom Brown
thom@linux.com
In reply to: Joshua D. Drake (#41)
#43Greg Smith
gsmith@gregsmith.com
In reply to: Devrim GÜNDÜZ (#32)
#44Rob Wultsch
wultsch@gmail.com
In reply to: Josh Williams (#39)
#45Devrim GÜNDÜZ
devrim@gunduz.org
In reply to: Rob Wultsch (#44)
#46damien clochard
damien@dalibo.info
In reply to: Roy Hann (#21)
In reply to: damien clochard (#46)
#48Rob Wultsch
wultsch@gmail.com
In reply to: Jehan-Guillaume (ioguix) de Rorthais (#47)
In reply to: Rob Wultsch (#48)
#50Josh Berkus
josh@agliodbs.com
In reply to: Jehan-Guillaume (ioguix) de Rorthais (#49)
#51Thom Brown
thom@linux.com
In reply to: Josh Berkus (#50)
#52Robert Haas
robertmhaas@gmail.com
In reply to: Simon Riggs (#33)
#53Josh Berkus
josh@agliodbs.com
In reply to: Thom Brown (#51)
#54Kevin Grittner
Kevin.Grittner@wicourts.gov
In reply to: Josh Berkus (#53)
#55Thom Brown
thom@linux.com
In reply to: Josh Berkus (#53)
#56Simon Riggs
simon@2ndQuadrant.com
In reply to: Robert Haas (#52)
#57Magnus Hagander
magnus@hagander.net
In reply to: Robert Haas (#52)
#58Josh Berkus
josh@agliodbs.com
In reply to: Simon Riggs (#56)
#59Simon Riggs
simon@2ndQuadrant.com
In reply to: Magnus Hagander (#57)
#60Kevin Grittner
Kevin.Grittner@wicourts.gov
In reply to: Simon Riggs (#56)
#61Simon Riggs
simon@2ndQuadrant.com
In reply to: Josh Berkus (#58)
#62Simon Riggs
simon@2ndQuadrant.com
In reply to: Kevin Grittner (#60)
#63Kevin Grittner
Kevin.Grittner@wicourts.gov
In reply to: Simon Riggs (#62)
#64Simon Riggs
simon@2ndQuadrant.com
In reply to: Kevin Grittner (#63)
#65Robert Haas
robertmhaas@gmail.com
In reply to: Simon Riggs (#56)
#66Robert Haas
robertmhaas@gmail.com
In reply to: Simon Riggs (#59)
#67Bruce Momjian
bruce@momjian.us
In reply to: Robert Haas (#66)
#68Bruce Momjian
bruce@momjian.us
In reply to: Magnus Hagander (#13)
#69Bruce Momjian
bruce@momjian.us
In reply to: Josh Berkus (#7)
#70Thom Brown
thom@linux.com
In reply to: Bruce Momjian (#69)
#71Kevin Grittner
Kevin.Grittner@wicourts.gov
In reply to: Bruce Momjian (#68)
#72Thom Brown
thom@linux.com
In reply to: Simon Riggs (#25)
#73Josh Berkus
josh@agliodbs.com
In reply to: Thom Brown (#72)
#74Thom Brown
thom@linux.com
In reply to: Josh Berkus (#73)
#75Robert Haas
robertmhaas@gmail.com
In reply to: Thom Brown (#74)
#76Thom Brown
thom@linux.com
In reply to: Robert Haas (#75)
#77Robert Haas
robertmhaas@gmail.com
In reply to: Thom Brown (#76)
#78Robert Haas
robertmhaas@gmail.com
In reply to: Robert Haas (#77)
#79Thom Brown
thom@linux.com
In reply to: Robert Haas (#78)
#80Robert Haas
robertmhaas@gmail.com
In reply to: Thom Brown (#79)
#81Dimitri Fontaine
dimitri@2ndQuadrant.fr
In reply to: Robert Haas (#80)