Re: Parallel copy

Поиск
Список
Период
Сортировка
От vignesh C
Тема Re: Parallel copy
Дата
Msg-id CALDaNm32c7kWpZm9UkS5P+ShsfRhyMTWKvFHyn9O53WZWvO2iA@mail.gmail.com
обсуждение исходный текст
Ответ на RE: Parallel copy  ("Hou, Zhijie" <houzj.fnst@cn.fujitsu.com>)
Ответы RE: Parallel copy  ("Hou, Zhijie" <houzj.fnst@cn.fujitsu.com>)
Список pgsql-hackers
Thanks for the comments.
> I took a look at the v10 patch set. Here are some comments:
>
> 1.
> +/*
> + * CheckExprParallelSafety
> + *
> + * Determine if where cluase and default expressions are parallel safe & do not
> + * have volatile expressions, return true if condition satisfies else return
> + * false.
> + */
>
> 'cluase' seems a typo.
>

changed.

> 2.
> +                       /*
> +                        * Make sure that no worker has consumed this element, if this
> +                        * line is spread across multiple data blocks, worker would have
> +                        * started processing, no need to change the state to
> +                        * LINE_LEADER_POPULATING in this case.
> +                        */
> +                       (void) pg_atomic_compare_exchange_u32(&lineInfo->line_state,
> +
¤t_line_state,
> +
LINE_LEADER_POPULATED);
> About the commect
>
> +                        * started processing, no need to change the state to
> +                        * LINE_LEADER_POPULATING in this case.
>
> Does it means no need to change the state to LINE_LEADER_POPULATED ' here?
>
>

Yes it is LINE_LEADER_POPULATED, changed accordingly.

> 3.
> + * 3) only one worker should choose one line for processing, this is handled by
> + *    using pg_atomic_compare_exchange_u32, worker will change the state to
> + *    LINE_WORKER_PROCESSING only if line_state is LINE_LEADER_POPULATED.
>
> In the latest patch, it will set the state to LINE_WORKER_PROCESSING if line_state is LINE_LEADER_POPULATED or
LINE_LEADER_POPULATING.
> So The comment here seems wrong.
>

Updated the comments.

> 4.
> A suggestion for CacheLineInfo.
>
> It use appendBinaryStringXXX to store the line in memory.
> appendBinaryStringXXX will double the str memory when there is no enough spaces.
>
> How about call enlargeStringInfo in advance, if we already know the whole line size?
> It can avoid some memory waste and may impove a little performance.
>

Here we will not know the size beforehand, in some cases we will start
processing the data when current block is populated and keep
processing block by block, we will come to know of the size at the
end. We cannot use enlargeStringInfo because of this.

Attached v11 patch has the fix for this, it also includes the changes
to rebase on top of head.

Regards,
Vignesh
EnterpriseDB: http://www.enterprisedb.com

Вложения

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

Предыдущее
От: vignesh C
Дата:
Сообщение: Added missing copy related data structures to typedefs.list
Следующее
От: Amit Kapila
Дата:
Сообщение: Re: Single transaction in the tablesync worker?