溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

分析PostgreSQL中的Prepare Transaction特性

發(fā)布時(shí)間:2021-11-05 15:24:46 來(lái)源:億速云 閱讀:299 作者:iii 欄目:關(guān)系型數(shù)據(jù)庫(kù)

本篇內(nèi)容介紹了“分析PostgreSQL中的Prepare Transaction特性”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

比如以下一個(gè)應(yīng)用場(chǎng)景:
數(shù)據(jù)分別存儲(chǔ)在Oracle和PostgreSQL中,要求事務(wù)跨Oracle和PostgreSQL實(shí)現(xiàn)事務(wù)一致性,使用PG的Prepare Transaction可以(非完美)實(shí)現(xiàn),不過(guò)需要引入更高層的事務(wù)管理器TM.
1.TM:開(kāi)啟PostgreSQL和Oracle事務(wù)
2.PostgreSQL:對(duì)數(shù)據(jù)進(jìn)行處理
3.TM:對(duì)PG執(zhí)行Prepare Transaction
4.Oracle:對(duì)數(shù)據(jù)進(jìn)行處理
5.TM:PG提交事務(wù)
6.TM:如第5步出錯(cuò),則回滾Oracle事務(wù),否則提交Oracle事務(wù)

啟用兩階段提交特性

[pg12@localhost pg121db]$ vim postgresql.conf 
[pg12@localhost pg121db]$ pg_ctl restart
waiting for server to shut down.... done
server stopped
waiting for server to start....2020-02-10 15:24:24.979 CST @ 2122  LOG:  starting PostgreSQL 12.1 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-16), 64-bit
2020-02-10 15:24:24.980 CST @ 2122  LOG:  listening on IPv4 address "0.0.0.0", port 5120
2020-02-10 15:24:24.980 CST @ 2122  LOG:  listening on IPv6 address "::", port 5120
2020-02-10 15:24:24.985 CST @ 2122  LOG:  listening on Unix socket "/data/run/pg12/.s.PGSQL.5120"
2020-02-10 15:24:25.058 CST @ 2122  LOG:  redirecting log output to logging collector process
2020-02-10 15:24:25.058 CST @ 2122  HINT:  Future log output will appear in directory "pg_log".
 done
server started
[pg12@localhost pg121db]$ grep 'prepared' postgresql.conf 
max_prepared_transactions = 10        # zero disables the feature
# Caution: it is not advisable to set max_prepared_transactions nonzero unless
# you actively intend to use prepared transactions.
[pg12@localhost pg121db]$

測(cè)試代碼
使用Java語(yǔ)言編寫(xiě)測(cè)試代碼

/*
 *
 */
package testPG;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.sql.Statement;
public class TestBoolean {
    public static void main(String[] args) {
        System.out.println("---------- PG -----------");
        try (Connection conn4pg = DriverManager.getConnection("jdbc:postgresql://192.168.26.28:5120/testdb", "pg12",
                "pg12");
                Connection conn4ora = DriverManager.getConnection("jdbc:oracle:thin:@192.168.1.18:1521:orcl", "test",
                        "test")) {
            // PG
            System.out.println("---------- PG -----------");
            conn4pg.setAutoCommit(false);
            boolean isOK = TestPG(conn4pg);
            if (!isOK) {
                System.out.println("---------- Fail! -----------");
                return;
            }
            TestPGPreTrans(conn4pg);
            // Oracle
            System.out.println("---------- Oracle -----------");
            conn4ora.setAutoCommit(false);
            isOK = TestOracle(conn4ora);
            // COMMIT
            conn4pg.setAutoCommit(true);
            TestPGEndPreTrans(conn4pg, isOK);
            conn4ora.commit();
            System.out.println("---------- DONE -----------");
        } catch (SQLException se) {
            System.out.println(se.getMessage());
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
        } // end try
    }
    public static boolean TestPG(Connection conn) {
        try (PreparedStatement pstmt = conn.prepareStatement("insert into t_pg(id,value) values(?,?)");) {
            pstmt.setInt(1, 1);
            pstmt.setString(2, "PostgreSQL");
            pstmt.execute();
            return true;
        } catch (SQLException se) {
            System.out.println(se.getMessage());
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
        } // end try
        return false;
    } // end
    public static void TestPGPreTrans(Connection conn) {
        try (Statement stmt = conn.createStatement()) {
            // 執(zhí)行
            stmt.execute("prepare transaction 'pt1'");
            stmt.execute("commit");
        } catch (SQLException se) {
            System.out.println(se.getMessage());
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
        } // end try
    } // end
    public static void TestPGEndPreTrans(Connection conn, Boolean isOK) {
        try (Statement stmt = conn.createStatement()) {
            // 執(zhí)行
            if (isOK) {
                stmt.execute("commit prepared 'pt1'");
            } else {
                stmt.execute("rollback prepared 'pt1'");
            }
        } catch (SQLException se) {
            System.out.println(se.getMessage());
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
        } // end try
    } // end
    public static boolean TestOracle(Connection conn) {
        try (PreparedStatement pstmt = conn.prepareStatement("insert into t_oracle(id,value) values(?,?)");) {
            pstmt.setInt(1, 1);
            pstmt.setString(2, "Oracle");
            pstmt.execute();
            return true;
        } catch (SQLException se) {
            System.out.println(se.getMessage());
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
        } // end try
        return false;
    } // end
} // end Class

成功執(zhí)行

TEST-orcl@DESKTOP-V430TU3>select * from t_oracle;
        ID VALUE
---------- --------------------
         1 Oracle
[local:/data/run/pg12]:5120 pg12@testdb=# select * from t_pg;
 id |   value    
----+------------
  1 | PostgreSQL
(1 row)

執(zhí)行失敗
Oracle數(shù)據(jù)表添加唯一索引,插入會(huì)失敗。

TEST-orcl@DESKTOP-V430TU3>alter table t_oracle add primary key(id);
Table altered.

Java日志輸出

---------- PG -----------
---------- PG -----------
---------- Oracle -----------
ORA-00001: 違反唯一約束條件 (TEST.SYS_C0064492)
---------- DONE -----------

查詢(xún)PG數(shù)據(jù)庫(kù)

[local:/data/run/pg12]:5120 pg12@testdb=# select * from t_pg;
 id |   value    
----+------------
  1 | PostgreSQL
(1 row)

仍然是1條記錄,實(shí)現(xiàn)了跨數(shù)據(jù)庫(kù)的事務(wù)一致性。

“分析PostgreSQL中的Prepare Transaction特性”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI