91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringCloud Alibaba Seata的使用方法

發布時間:2020-10-28 01:24:11 來源:億速云 閱讀:735 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關SpringCloud Alibaba Seata的使用方法,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

1,概念

Seata是一款開源的分布式事務解決方案,致力于在微服務架構在提供高性能和簡單一樣的分布式事務服務。

2,處理過程

Transaction ID XID:全局唯一的事務ID

Transaction Coordinator(TC) :維護全局和分支事務的狀態,驅動全局事務提交或回滾。

Transaction Manager™ :定義全局事務的范圍:開始全局事務、提交或回滾全局事務。

Resource Manager(RM) :管理分支事務處理的資源,與TC交談以注冊分支事務和報告分支事務的狀態,并驅動分支事務提交或回滾。

SpringCloud Alibaba Seata的使用方法

  • TM向TC申請開啟一個全局事務,全局事務創建成功并生成一個全局唯一的XID
  • XID在微服務調用鏈路的上下文中傳播
  • RM向TC注冊分支事務,將其納入XID對應全局事務的管轄
  • TM向TC發起針對XID的全局提交或回滾決議
  • TC調度XID下管轄的全部分支事務完成提交或回滾請求

 二、Seata-Server的安裝

1,下載

http://seata.io/zh-cn/blog/download.html 選擇指定版本下載(我這里用的是0.9.0)

2,修改配置文件

修改seata/conf/file.conf

#將service中修改group
vgroup_mapping.my_test_tx_group = "my_group"
#將store模塊修改為db并修改數據連接,將conf目錄下的db_store.sql文件導入到數據庫中
mode = "db"
db {
  datasource = "dbcp"
  db-type = "mysql"
  driver-class-name = "com.mysql.jdbc.Driver"
  url = "jdbc:mysql://127.0.0.1:3306/seata"
  user = "root"
  password = "123456"
}

修改seata/conf/registry.conf

registry {
 type = "nacos"
 nacos {
  serverAddr = "localhost:8848"
  namespace = ""
  cluster = "default"
 }

三、Seata的應用

1,訂單服務

源碼: seata-order-service2001

a,配置pom

<!--nacos-->
<dependency>
  <groupId>com.alibaba.cloud</groupId>
  <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<!--seata-->
<dependency>
  <groupId>com.alibaba.cloud</groupId>
  <artifactId>spring-cloud-starter-alibaba-seata</artifactId>
  <exclusions>
    <exclusion>
      <artifactId>seata-all</artifactId>
      <groupId>io.seata</groupId>
    </exclusion>
  </exclusions>
</dependency>
<dependency>
  <groupId>io.seata</groupId>
  <artifactId>seata-all</artifactId>
  <version>0.9.0</version>
</dependency>
<!--feign-->
<dependency>
  <groupId>org.springframework.cloud</groupId>
  <artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
<!--web-actuator-->
<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!--mysql-druid-->
<dependency>
  <groupId>mysql</groupId>
  <artifactId>mysql-connector-java</artifactId>
  <version>5.1.37</version>
</dependency>
<dependency>
  <groupId>com.alibaba</groupId>
  <artifactId>druid-spring-boot-starter</artifactId>
  <version>1.1.10</version>
</dependency>
<dependency>
  <groupId>org.mybatis.spring.boot</groupId>
  <artifactId>mybatis-spring-boot-starter</artifactId>
  <version>2.0.0</version>
</dependency>

b,配置yaml

server:
 port: 2001

spring:
 application:
  name: seata-order-service
 cloud:
  alibaba:
   seata:
    #自定義事務組名稱需要與seata-server中的對應
    tx-service-group: my_group
  nacos:
   discovery:
    server-addr: localhost:8848
 datasource:
  driver-class-name: com.mysql.jdbc.Driver
  url: jdbc:mysql://localhost:3306/seata_order
  username: root
  password: 123456

feign:
 hystrix:
  enabled: false

logging:
 level:
  io:
   seata: info

mybatis:
 mapperLocations: classpath:mapper/*.xml

c,添加file.conf(與seata-server配置相同)

transport {
 # tcp udt unix-domain-socket
 type = "TCP"
 #NIO NATIVE
 server = "NIO"
 #enable heartbeat
 heartbeat = true
 #thread factory for netty
 thread-factory {
  boss-thread-prefix = "NettyBoss"
  worker-thread-prefix = "NettyServerNIOWorker"
  server-executor-thread-prefix = "NettyServerBizHandler"
  share-boss-worker = false
  client-selector-thread-prefix = "NettyClientSelector"
  client-selector-thread-size = 1
  client-worker-thread-prefix = "NettyClientWorkerThread"
  # netty boss thread size,will not be used for UDT
  boss-thread-size = 1
  #auto default pin or 8
  worker-thread-size = 8
 }
 shutdown {
  # when destroy server, wait seconds
  wait = 3
 }
 serialization = "seata"
 compressor = "none"
}

service {

 vgroup_mapping.my_group = "default"

 default.grouplist = "127.0.0.1:8091"
 enableDegrade = false
 disable = false
 max.commit.retry.timeout = "-1"
 max.rollback.retry.timeout = "-1"
 disableGlobalTransaction = false
}

client {
 async.commit.buffer.limit = 10000
 lock {
  retry.internal = 10
  retry.times = 30
 }
 report.retry.count = 5
 tm.commit.retry.count = 1
 tm.rollback.retry.count = 1
}

## transaction log store
store {
 ## store mode: file、db
 mode = "db"

 ## file store
 file {
  dir = "sessionStore"

  # branch session size , if exceeded first try compress lockkey, still exceeded throws exceptions
  max-branch-session-size = 16384
  # globe session size , if exceeded throws exceptions
  max-global-session-size = 512
  # file buffer size , if exceeded allocate new buffer
  file-write-buffer-cache-size = 16384
  # when recover batch read size
  session.reload.read_size = 100
  # async, sync
  flush-disk-mode = async
 }

 ## database store
 db {
  ## the implement of javax.sql.DataSource, such as DruidDataSource(druid)/BasicDataSource(dbcp) etc.
  datasource = "dbcp"
  ## mysql/oracle/h3/oceanbase etc.
  db-type = "mysql"
  driver-class-name = "com.mysql.jdbc.Driver"
  url = "jdbc:mysql://127.0.0.1:3306/seata"
  user = "root"
  password = "123456"
  min-conn = 1
  max-conn = 3
  global.table = "global_table"
  branch.table = "branch_table"
  lock-table = "lock_table"
  query-limit = 100
 }
}
lock {
 ## the lock store mode: local、remote
 mode = "remote"

 local {
  ## store locks in user's database
 }

 remote {
  ## store locks in the seata's server
 }
}
recovery {
 #schedule committing retry period in milliseconds
 committing-retry-period = 1000
 #schedule asyn committing retry period in milliseconds
 asyn-committing-retry-period = 1000
 #schedule rollbacking retry period in milliseconds
 rollbacking-retry-period = 1000
 #schedule timeout retry period in milliseconds
 timeout-retry-period = 1000
}

transaction {
 undo.data.validation = true
 undo.log.serialization = "jackson"
 undo.log.save.days = 7
 #schedule delete expired undo_log in milliseconds
 undo.log.delete.period = 86400000
 undo.log.table = "undo_log"
}

## metrics settings
metrics {
 enabled = false
 registry-type = "compact"
 # multi exporters use comma divided
 exporter-list = "prometheus"
 exporter-prometheus-port = 9898
}

support {
 ## spring
 spring {
  # auto proxy the DataSource bean
  datasource.autoproxy = false
 }
}

d,添加registry.conf(與seata-server的配置相同)

registry {
 # file 、nacos 、eureka、redis、zk、consul、etcd3、sofa
 type = "nacos"

 nacos {
  serverAddr = "localhost:8848"
  namespace = ""
  cluster = "default"
 }
 eureka {
  serviceUrl = "http://localhost:8761/eureka"
  application = "default"
  weight = "1"
 }
 redis {
  serverAddr = "localhost:6379"
  db = "0"
 }
 zk {
  cluster = "default"
  serverAddr = "127.0.0.1:2181"
  session.timeout = 6000
  connect.timeout = 2000
 }
 consul {
  cluster = "default"
  serverAddr = "127.0.0.1:8500"
 }
 etcd3 {
  cluster = "default"
  serverAddr = "http://localhost:2379"
 }
 sofa {
  serverAddr = "127.0.0.1:9603"
  application = "default"
  region = "DEFAULT_ZONE"
  datacenter = "DefaultDataCenter"
  cluster = "default"
  group = "SEATA_GROUP"
  addressWaitTime = "3000"
 }
 file {
  name = "file.conf"
 }
}

config {
 # file、nacos 、apollo、zk、consul、etcd3
 type = "file"

 nacos {
  serverAddr = "localhost"
  namespace = ""
 }
 consul {
  serverAddr = "127.0.0.1:8500"
 }
 apollo {
  app.id = "seata-server"
  apollo.meta = "http://192.168.1.204:8801"
 }
 zk {
  serverAddr = "127.0.0.1:2181"
  session.timeout = 6000
  connect.timeout = 2000
 }
 etcd3 {
  serverAddr = "http://localhost:2379"
 }
 file {
  name = "file.conf"
 }
}

e,fegin調用(這里以其中一個account為例)

@FeignClient(value = "seata-account-service")
public interface AccountService {

  @RequestMapping("/account/decrease")
  public CommonResult decrease(@RequestParam("userId") Long userId, @RequestParam("money") BigDecimal money);

}

f,事務service

@Slf4j
@Service
public class OrderServiceImpl implements OrderService {

  @Autowired
  OrderDao orderDao;
  @Autowired
  AccountService accountService;
  @Autowired
  StorageService storageService;

  @Override
  @GlobalTransactional(name = "my-order-test",rollbackFor = Exception.class) //加注解使用全局的事務,name 為事務名稱不重復就行
  public Long create(Order order) {
    log.info("=========================下訂單,開始");
    orderDao.create(order);
    log.info("=========================下訂單,完成");

    log.info("=========================減庫存,開始");
    storageService.decrease(order.getProductId(), order.getCount());
    log.info("=========================減庫存,完成");

    log.info("=========================減積分,開始");
    accountService.decrease(order.getUserId(), order.getMoney());
    log.info("=========================減積分,完成");

    log.info("=========================訂單狀態修改,開始");
    orderDao.update(order.getId(),1);
    log.info("=========================訂單狀態修改,完成");

    return order.getId();
  }
}

g,啟動類

2,庫存服務

源碼: seata-storage-service2002

與訂單服務中的a,b,c,d,g配置步驟相同

3,賬戶服務

源碼: seata-account-service2003

與庫存服務的配置步驟相同

四、Seata的原理解析

參考文檔: http://seata.io/zh-cn/docs/overview/what-is-seata.html

1,AT模式 一階段

1,解析SQL語義,找到"業務SQL"要更新的業務數據,在業務數據被更新前,將其保存成"before image"
2,執行"業務SQL"更新業務數據,在業務數更新之后
3,將其保存成"after image",最后生成行鎖。
以上操作全部在一個數據庫事務內完成,這樣保證了一階段操作的原子性。

SpringCloud Alibaba Seata的使用方法

二階段提交

因為"業務SQL"在一階段已經提交至數據庫,所以seata框架只需 將一階段保存的快照數據和行鎖刪掉 ,完成數據清理即可。

SpringCloud Alibaba Seata的使用方法

二階段回滾

二階段如果是回滾的話,seata就需要回滾一階段已經執行的"業務SQL",還原業務數據。

回滾的方式便是用"before image"還原業務數據;但在還原前要首先校驗臟寫,對比"數據庫當前業務數據"和"after image"

如果兩份數據完全一致就說明沒有臟寫,可以還原業務數據,如果不一致就說明有臟寫,出現臟寫就需要轉人工處理。

SpringCloud Alibaba Seata的使用方法

以上就是SpringCloud Alibaba Seata的使用方法,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

富川| 班玛县| 江源县| 安义县| 滕州市| 崇明县| 博野县| 罗田县| 铜山县| 开平市| 汝南县| 浦东新区| 嘉禾县| 盱眙县| 石林| 益阳市| 临高县| 彭山县| 仙居县| 靖远县| 巴东县| 微山县| 成都市| 祁东县| 齐齐哈尔市| 贞丰县| 西峡县| 民县| 青冈县| 张家川| 淮滨县| 阜宁县| 册亨县| 二连浩特市| 同江市| 新源县| 九台市| 普宁市| 禄丰县| 阜新市| 七台河市|