liuyangming / ByteTCC

ByteTCC is a distributed transaction manager based on the TCC(Try/Confirm/Cancel) mechanism. It’s compatible with the JTA specification. User guide: https://github.com/liuyangming/ByteTCC/wiki
https://www.bytesoft.org/
GNU Lesser General Public License v3.0
2.9k stars 913 forks source link

confirm阶段不能调用feign #133

Closed kagenRuan closed 3 years ago

kagenRuan commented 3 years ago

为什么不能再confirm阶段调用feign

liuyangming commented 3 years ago

byteTCC要求,所有的远程调用均在Try阶段执行,Confirm仅用于本服务的最后扫尾确认操作;如果远程服务也有相应的确认操作需要做,会由远程的byteTCC通知回调,业务逻辑不必参与。