Re: [ADMIN] Questions on Streaming Replication

Поиск
Список
Период
Сортировка
От Wei Shan
Тема Re: [ADMIN] Questions on Streaming Replication
Дата
Msg-id CAFe9ZTp2aW3E3EPMC59fP4pG7Y2+cogS4LvduBSPUdqaJhaujQ@mail.gmail.com
обсуждение исходный текст
Ответ на Re: [ADMIN] Questions on Streaming Replication  (Albe Laurenz <laurenz.albe@wien.gv.at>)
Ответы Re: [ADMIN] Questions on Streaming Replication  (Albe Laurenz <laurenz.albe@wien.gv.at>)
Список pgsql-admin
Hi Laurenz,

But the same version of glibc will be different on RHEL6/RHEL7 isn't it?


On 7 July 2017 at 12:11, Albe Laurenz <laurenz.albe@wien.gv.at> wrote:
> On 06/07/17 11:29, Wei Shan wrote:
>> Is it possible setup streaming replication between different OS?
>>
>> For example, between RHEL6 and RHEL7. I understand that it is not
>> possible between Windows and Linux.I need to migrate a PostgreSQL
>> instance to a new host, while upgrading the OS if possible.
>>
>> Has anyone done this before?

Mark Kirkwood wrote:
> I think you should be ok between different versions of Linux, provided:
>
> - both systems use hardware with same endianness and bitness (e.g both
> 64 bit Intel say)
>
> - both OS are the same bitness (e.g both 64 bit)

And, very importeant, if they don't have different versions of libc
that have different ideas about character collation.
See also https://www.postgresql.org/message-id/CB4D1C6BAA80CF146CB0D4F2%40eje.credativ.lan

RHEL6:

$ cat /etc/redhat-release
Red Hat Enterprise Linux Server release 6.9 (Santiago)
$ echo -e '156\n1-5-6\n110\n1-1-0' | LANG=de_DE.UTF-8 sort
1-1-0
110
1-5-6
156

RHEL7:

$ cat /etc/redhat-release
Red Hat Enterprise Linux Server release 7.3 (Maipo)
$ echo -e '156\n1-5-6\n110\n1-1-0' | LANG=de_DE.UTF-8 sort
110
1-1-0
156
1-5-6

So you are probably OK as long as you are only using the C collation, but
if you have any indexes that use a collation that is different on both systems,
The index on the standby will be corrupted.

Yours,
Laurenz Albe



--
Regards,
Ang Wei Shan

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

Предыдущее
От: Albe Laurenz
Дата:
Сообщение: Re: [ADMIN] Questions on Streaming Replication
Следующее
От: Albe Laurenz
Дата:
Сообщение: Re: [ADMIN] Questions on Streaming Replication