主頁(yè) > 知識(shí)庫(kù) > seata docker 高可用部署的詳細(xì)介紹

seata docker 高可用部署的詳細(xì)介紹

熱門(mén)標(biāo)簽:做外呼系統(tǒng)的公司違法嗎 威海人工外呼系統(tǒng)供應(yīng)商 在百度地圖標(biāo)注車(chē)輛 400電話(huà)申請(qǐng)方案 烏海智能電話(huà)機(jī)器人 藍(lán)點(diǎn)外呼系統(tǒng) 寧夏房產(chǎn)智能外呼系統(tǒng)要多少錢(qián) 撫順移動(dòng)400電話(huà)申請(qǐng) 貴陽(yáng)教育行業(yè)電話(huà)外呼系統(tǒng)

版本

1.4.2
官方文檔
dockerhub

啟動(dòng)

通過(guò)環(huán)境變量SEATA_CONFIG_NAME指定配置文件位置/root/seata-config/registry.conf

docker run --name seata-server \

        -p 8091:8091 \

        -e SEATA_CONFIG_NAME=file:/root/seata-config/registry \ 
        -v /User/seata/config:/root/seata-config  \

        seataio/seata-server

配置文件

實(shí)現(xiàn)高可用需要依賴(lài)注冊(cè)中心,配置中心,數(shù)據(jù)庫(kù)
registry.conf

registry {
  type = "nacos"

  nacos {
    application = "seata-server"
    serverAddr = "192.168.199.2"
    namespace = "test"
    group = "SEATA_GROUP"
    cluster = "default"
    username = ""
    password = ""
  }
}

config {
  type = "nacos"  
  nacos {
    serverAddr = "192.168.199.2"
    namespace = "test"
    group = "SEATA_GROUP"
    username = ""
    password = ""
  }
}

NACOS配置

注:使用nacos配置,需要在對(duì)應(yīng)分組(SEATA_GROUP)下針對(duì)配置項(xiàng)目逐條配置文本值,而不是創(chuàng)建包含所有配置的properties文件,可以使用官方源碼中的腳本導(dǎo)入
全部可用配置參考

1. 使用數(shù)據(jù)庫(kù)

store.mode=db
store.db.datasource=druid
store.db.dbType=mysql
store.db.driverClassName=com.mysql.jdbc.Driver
store.db.url=jdbc:mysql://192.168.199.2:3306/seata?useUnicode=true&rewriteBatchedStatements=true
store.db.user=root
store.db.password=123456

創(chuàng)建數(shù)據(jù)庫(kù)

建庫(kù)腳本

-- -------------------------------- The script used when storeMode is 'db' --------------------------------
-- the table to store GlobalSession data
CREATE TABLE IF NOT EXISTS `global_table`
(
    `xid`                       VARCHAR(128) NOT NULL,
    `transaction_id`            BIGINT,
    `status`                    TINYINT      NOT NULL,
    `application_id`            VARCHAR(32),
    `transaction_service_group` VARCHAR(32),
    `transaction_name`          VARCHAR(128),
    `timeout`                   INT,
    `begin_time`                BIGINT,
    `application_data`          VARCHAR(2000),
    `gmt_create`                DATETIME,
    `gmt_modified`              DATETIME,
    PRIMARY KEY (`xid`),
    KEY `idx_gmt_modified_status` (`gmt_modified`, `status`),
    KEY `idx_transaction_id` (`transaction_id`)
) ENGINE = InnoDB
  DEFAULT CHARSET = utf8;

-- the table to store BranchSession data
CREATE TABLE IF NOT EXISTS `branch_table`
(
    `branch_id`         BIGINT       NOT NULL,
    `xid`               VARCHAR(128) NOT NULL,
    `transaction_id`    BIGINT,
    `resource_group_id` VARCHAR(32),
    `resource_id`       VARCHAR(256),
    `branch_type`       VARCHAR(8),
    `status`            TINYINT,
    `client_id`         VARCHAR(64),
    `application_data`  VARCHAR(2000),
    `gmt_create`        DATETIME(6),
    `gmt_modified`      DATETIME(6),
    PRIMARY KEY (`branch_id`),
    KEY `idx_xid` (`xid`)
) ENGINE = InnoDB
  DEFAULT CHARSET = utf8;

-- the table to store lock data
CREATE TABLE IF NOT EXISTS `lock_table`
(
    `row_key`        VARCHAR(128) NOT NULL,
    `xid`            VARCHAR(128),
    `transaction_id` BIGINT,
    `branch_id`      BIGINT       NOT NULL,
    `resource_id`    VARCHAR(256),
    `table_name`     VARCHAR(32),
    `pk`             VARCHAR(36),
    `gmt_create`     DATETIME,
    `gmt_modified`   DATETIME,
    PRIMARY KEY (`row_key`),
    KEY `idx_branch_id` (`branch_id`)
) ENGINE = InnoDB
  DEFAULT CHARSET = utf8;

異常處理

1. 客戶(hù)端報(bào)錯(cuò) Data too long for column ‘a(chǎn)pplication_id'

io.seata.core.exception.TmTransactionException: TransactionException[begin global request failed. xid=null, msg=Data truncation: Data too long for column ‘a(chǎn)pplication_id' at row 1]
at io.seata.tm.DefaultTransactionManager.begin(DefaultTransactionManager.java:55) ~[seata-all-1.3.0.jar:1.3.0]
at io.seata.tm.api.DefaultGlobalTransaction.begin(DefaultGlobalTransaction.java:104) ~[seata-all-1.3.0.jar:1.3.0]
at io.seata.tm.api.TransactionalTemplate.beginTransaction(TransactionalTemplate.java:175) ~[seata-all-1.3.0.jar:1.3.0]

seata數(shù)據(jù)庫(kù)global_table.application_id字段默認(rèn)長(zhǎng)度為varchar(32),如果客戶(hù)端應(yīng)用ID超長(zhǎng)則報(bào)此錯(cuò)
手動(dòng)修改字段類(lèi)型增加長(zhǎng)度即可

到此這篇關(guān)于seata docker 高可用部署的文章就介紹到這了,更多相關(guān)seata docker部署內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

標(biāo)簽:慶陽(yáng) 蕪湖 銅川 朝陽(yáng) 泰州 那曲 周口 松原

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《seata docker 高可用部署的詳細(xì)介紹》,本文關(guān)鍵詞  seata,docker,高可用,高,可用,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《seata docker 高可用部署的詳細(xì)介紹》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于seata docker 高可用部署的詳細(xì)介紹的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章