| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- # Copyright 1999-2019 Seata.io Group.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- transport {
- # tcp, unix-domain-socket
- type = "TCP"
- #NIO, NATIVE
- server = "NIO"
- #enable heartbeat
- heartbeat = true
- # the tm client batch send request enable
- enableTmClientBatchSendRequest = true
- # the rm client batch send request enable
- enableRmClientBatchSendRequest = true
- #thread factory for netty
- threadFactory {
- bossThreadPrefix = "NettyBoss"
- workerThreadPrefix = "NettyServerNIOWorker"
- serverExecutorThread-prefix = "NettyServerBizHandler"
- shareBossWorker = false
- clientSelectorThreadPrefix = "NettyClientSelector"
- clientSelectorThreadSize = 1
- clientWorkerThreadPrefix = "NettyClientWorkerThread"
- # netty boss thread size
- bossThreadSize = 1
- #auto default pin or 8
- workerThreadSize = "default"
- }
- shutdown {
- # when destroy server, wait seconds
- wait = 3
- }
- serialization = "seata"
- compressor = "none"
- }
- service {
- #transaction service group mapping
- vgroupMapping.default_tx_group = "default"
- #only support when registry.type=file, please don't set multiple addresses
- default.grouplist = "127.0.0.1:8091"
- #disable seata
- disableGlobalTransaction = false
- }
- client {
- rm {
- reportSuccessEnable = false
- sagaBranchRegisterEnable = false
- sagaJsonParser = jackson
- sagaRetryPersistModeUpdate = false
- sagaCompensatePersistModeUpdate = false
- }
- loadBalance {
- type = "RandomLoadBalance"
- virtualNodes = 10
- }
- }
|