Would preparing internally during XAResource.end(xid, TMSUCCESS) works?

Поиск
Список
Период
Сортировка
От Andy Fan
Тема Would preparing internally during XAResource.end(xid, TMSUCCESS) works?
Дата
Msg-id CAKU4AWqF=FgsnyjSorBKLeCi50iB7NmT4KaQWKmp-gCgKmd_uQ@mail.gmail.com
обсуждение исходный текст
Ответы Re: Would preparing internally during XAResource.end(xid, TMSUCCESS) works?
Список pgsql-jdbc
Hi:

One of our customers is coming from Oracle and they use XAResource like
this.

xaResource1.start(xid, ..);
xaResource1.getConnection.doSomeDML();
xaResource1.end(xid, TMSUCCESS);

xaResource2.prepare(xid);

This works in Oracle but doesn't work in PostgreSQL's JDBC, since we have
to use the same XAResource instance to prepare the xid.

I know why we have to 'prepare transaction xxx' in the same connection for
PostgreSQL kernel. For now my question is:  can we do the 'prepare
transaction 'xxx'' during XAResource.end(xid, TMSUCCESS); and later in
XAResource2.prepare(xid), we can double check if it is prepared already,
if so we can just return XA_OK. the benefit of this is that the user doesn't
have to prepare in the same connection.

Asking customers not to do this is not an option in my case, 
and I'm not asking our community to do so, I'm just asking what
would be wrong if we do so.

Any feedback is welcome,  Thanks!


--
Best Regards
Andy Fan

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

Предыдущее
От: Dave Cramer
Дата:
Сообщение: Security release for CVE-2022-41946
Следующее
От: Damiano Albani
Дата:
Сообщение: [pgjdbc/pgjdbc] 5398f2: Ensure case of XML tags in Maven snippet is correc...