Re: Tow kinds of different result while using create index concurrently - Mailing list pgsql-general

From Jeff Janes
Subject Re: Tow kinds of different result while using create index concurrently
Date
Msg-id CAMkU=1wrfyJEbsC8ta1y8DQocHFRngGkcdepruLBAuo2m63USg@mail.gmail.com
Whole thread Raw
In response to Tow kinds of different result while using create index concurrently  (高健 <luckyjackgao@gmail.com>)
Responses Re: Tow kinds of different result while using create index concurrently  (高健 <luckyjackgao@gmail.com>)
List pgsql-general
On Thu, Jun 20, 2013 at 1:27 AM, 高健 <luckyjackgao@gmail.com> wrote:

Hello:

 

I  have question about PG's "create index concurrently". I think it is a bug perhaps.

 

I  make two tables tab01 and tab02, they have no relationships.

I think "create index concurrently " on tab02 will not be influenced by  transaction on tab01.

But the result differs:


This is expected.  In order to not interfere with "normal" activity, a concurrent index build has to volunteer to be blocked by such activity instead.  From the doc: "When this option is used, PostgreSQL must perform two scans of the table, and in addition it must wait for all existing transactions that could potentially use the index to terminate."

Now in your case, perhaps the argument could be made that the transaction hosting the 1st concurrent build could not potentially use the 2nd-building index, but there is no convenient way for PostgreSQL to detect that fact.

 Cheers,

Jeff

pgsql-general by date:

Previous
From: Manuel Kniep
Date:
Subject: unexpected external sort Disk
Next
From: Jeff Janes
Date:
Subject: Re: Do not understand high estimates of index scan vs seq scan