feat(configuration): 增加signature标志 用于区分不同的服务群

比如生产环境和测试环境需要订阅同一个pulsar topic,同样的订阅名称会产生冲突,需要从集群层面避免冲突,所以增加了一个「签名(signature)」在需要的地方可以用于识别不同的两个集群
This commit is contained in:
v-zhangjc9
2024-03-19 14:30:17 +08:00
parent 4f055bfcf8
commit 5771ec238b
14 changed files with 83 additions and 17 deletions

View File

@@ -60,6 +60,7 @@ public interface Constants {
String INSTANTS = "instants";
String BETA = "beta";
String CLUSTER = "cluster";
String SIGNATURE = "signature";
String COW = "COPY_ON_WRITE";
String MOR = "MERGE_ON_READ";