[HACKERS] Missing CHECK_FOR_INTERRUPTS in hash joins

Поиск
Список
Период
Сортировка
От Tom Lane
Тема [HACKERS] Missing CHECK_FOR_INTERRUPTS in hash joins
Дата
Msg-id 6044.1487121720@sss.pgh.pa.us
обсуждение исходный текст
Ответы Re: [HACKERS] Missing CHECK_FOR_INTERRUPTS in hash joins  (Thomas Munro <thomas.munro@enterprisedb.com>)
Список pgsql-hackers
I ran into a case where a hash join took a really long time to respond
to a cancel request --- long enough that I gave up and kill -9'd it,
because its memory usage was also growing to the point where the kernel
would likely soon choose to do that for me.  The culprit seems to be
that there's no CHECK_FOR_INTERRUPTS anywhere in this loop in
ExecHashJoinNewBatch():
       while ((slot = ExecHashJoinGetSavedTuple(hjstate,                                                innerFile,
                                         &hashvalue,
hjstate->hj_HashTupleSlot)))      {           /*            * NOTE: some tuples may be sent to future batches.  Also,
itis            * possible for hashtable->nbatch to be increased here!            */
ExecHashTableInsert(hashtable,slot, hashvalue);       }
 

so that if you try to cancel while it's sucking a really large batch file
into memory, you lose.  (In the pathological case I was checking, the
batch file was many gigabytes in size, and had certainly never all been
resident earlier.)

Adding a C.F.I. inside this loop is the most straightforward fix, but
I am leaning towards adding one in ExecHashJoinGetSavedTuple instead,
because that would also ensure that all successful paths through
ExecHashJoinOuterGetTuple will do a C.F.I. somewhere, and it seems good
for that to be consistent.  The other possibility is to put one inside
ExecHashTableInsert, but the only other caller of that doesn't really need
it, since it's relying on ExecProcNode to do one.
        regards, tom lane



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] WAL consistency check facility
Следующее
От: Robert Haas
Дата:
Сообщение: Re: [HACKERS] [Bug fix] PQsendQuery occurs error whentarget_session_attrs is set to read-write